summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierrick Charron <pierrick@php.net>2011-12-07 16:46:48 +0000
committerPierrick Charron <pierrick@php.net>2011-12-07 16:46:48 +0000
commit2e87cd3399667e9da4142d29dc19b0f5a0b43d2e (patch)
treeeeb260400c76caa10a89641bd147d7b74462ced1
parent572e36e2e481b37410047a13f07095987a591c9e (diff)
downloadphp-git-2e87cd3399667e9da4142d29dc19b0f5a0b43d2e.tar.gz
Fix test
-rw-r--r--ext/curl/tests/bug27023.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/curl/tests/bug27023.phpt b/ext/curl/tests/bug27023.phpt
index ca42c60927..b738c956e9 100644
--- a/ext/curl/tests/bug27023.phpt
+++ b/ext/curl/tests/bug27023.phpt
@@ -33,7 +33,7 @@ $params = array('file' => '@' . __DIR__ . '/curl_testdata1.txt;type=text/plain;f
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
var_dump(curl_exec($ch));
-$params = array('file' => '@' . __DIR__ . '/curl_testdata1.txt;type=text/plain;filename=foo.txt');
+$params = array('file' => '@' . __DIR__ . '/curl_testdata1.txt;filename=foo.txt;type=text/plain');
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
var_dump(curl_exec($ch));