summaryrefslogtreecommitdiff
path: root/ext/curl/tests/curl_copy_handle_basic_001.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/curl/tests/curl_copy_handle_basic_001.phpt')
-rw-r--r--ext/curl/tests/curl_copy_handle_basic_001.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/curl/tests/curl_copy_handle_basic_001.phpt b/ext/curl/tests/curl_copy_handle_basic_001.phpt
index 0f1cf9dfd7..ba66d55286 100644
--- a/ext/curl/tests/curl_copy_handle_basic_001.phpt
+++ b/ext/curl/tests/curl_copy_handle_basic_001.phpt
@@ -19,10 +19,10 @@ Rick Buitenman <rick@meritos.nl>
ob_start(); // start output buffering
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
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);