summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShein Alexey <shein@php.net>2011-05-31 12:57:40 +0000
committerShein Alexey <shein@php.net>2011-05-31 12:57:40 +0000
commite69b73e0b8c472302aac99a0242899b0cc99ae38 (patch)
tree959490753e36bf0481afa31ed5118dc30a4a1152
parente2ac61225f09156732431274d3d3752b535cd5f2 (diff)
downloadphp-git-e69b73e0b8c472302aac99a0242899b0cc99ae38.tar.gz
Fixed notice breaking the test.
-rw-r--r--ext/curl/tests/bug48207.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/curl/tests/bug48207.phpt b/ext/curl/tests/bug48207.phpt
index b6caa618c1..6ac16f5ea8 100644
--- a/ext/curl/tests/bug48207.phpt
+++ b/ext/curl/tests/bug48207.phpt
@@ -18,7 +18,7 @@ $host = getenv('PHP_CURL_HTTP_REMOTE_SERVER');
if(!empty($host)) {
// Use the set Environment variable
- $url = "$host/get.php";
+ $url = "$host/get.php?test=1";
} else {