summaryrefslogtreecommitdiff
path: root/ext/curl/tests/curl_copy_handle_basic_007.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/curl/tests/curl_copy_handle_basic_007.phpt')
-rw-r--r--ext/curl/tests/curl_copy_handle_basic_007.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/curl/tests/curl_copy_handle_basic_007.phpt b/ext/curl/tests/curl_copy_handle_basic_007.phpt
index 23813d32c2..9d6dc2dc39 100644
--- a/ext/curl/tests/curl_copy_handle_basic_007.phpt
+++ b/ext/curl/tests/curl_copy_handle_basic_007.phpt
@@ -18,10 +18,10 @@ Test curl_copy_handle() with simple POST
curl_setopt($ch, CURLOPT_POSTFIELDS, array("Hello" => "World", "Foo" => "Bar", "Person" => "John Doe"));
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Expect:')); // Disable Expect: header (lighttpd does not support it :)
curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
-
+
$copy = curl_copy_handle($ch);
curl_close($ch);
-
+
$curl_content = curl_exec($copy);
curl_close($copy);