summaryrefslogtreecommitdiff
path: root/tests/basic
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basic')
-rw-r--r--tests/basic/bug67198.phpt4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/basic/bug67198.phpt b/tests/basic/bug67198.phpt
index 184916197b..3f5e2a348c 100644
--- a/tests/basic/bug67198.phpt
+++ b/tests/basic/bug67198.phpt
@@ -35,7 +35,9 @@ $opts = array('http' =>
$context = stream_context_create($opts);
-php_cli_server_start("exit(file_get_contents('php://input'));", false, "-d enable_post_data_reading=Off");
+php_cli_server_start(
+ "exit(file_get_contents('php://input'));", null,
+ ["-d", "enable_post_data_reading=Off"]);
var_dump(file_get_contents("http://" . PHP_CLI_SERVER_ADDRESS, false, $context));
var_dump(file_get_contents("http://" . PHP_CLI_SERVER_ADDRESS, false, $context));