summaryrefslogtreecommitdiff
path: root/sapi/fpm/tests/getallheaders.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'sapi/fpm/tests/getallheaders.phpt')
-rw-r--r--sapi/fpm/tests/getallheaders.phpt42
1 files changed, 21 insertions, 21 deletions
diff --git a/sapi/fpm/tests/getallheaders.phpt b/sapi/fpm/tests/getallheaders.phpt
index b1f9683788..90ecae3e44 100644
--- a/sapi/fpm/tests/getallheaders.phpt
+++ b/sapi/fpm/tests/getallheaders.phpt
@@ -31,27 +31,27 @@ $tester = new FPM\Tester($cfg, $code);
$tester->start();
$tester->expectLogStartNotices();
$tester->request(
- '',
- [
- 'HTTP_X_FOO' => 'BAR',
- 'HTTP_FOO' => 'foo'
- ]
- )->expectBody(
- [
- 'Test Start',
- 'array(4) {',
- ' ["Foo"]=>',
- ' string(3) "foo"',
- ' ["X-Foo"]=>',
- ' string(3) "BAR"',
- ' ["Content-Length"]=>',
- ' string(1) "0"',
- ' ["Content-Type"]=>',
- ' string(0) ""',
- '}',
- 'Test End',
- ]
- );
+ '',
+ [
+ 'HTTP_X_FOO' => 'BAR',
+ 'HTTP_FOO' => 'foo'
+ ]
+ )->expectBody(
+ [
+ 'Test Start',
+ 'array(4) {',
+ ' ["Foo"]=>',
+ ' string(3) "foo"',
+ ' ["X-Foo"]=>',
+ ' string(3) "BAR"',
+ ' ["Content-Length"]=>',
+ ' string(1) "0"',
+ ' ["Content-Type"]=>',
+ ' string(0) ""',
+ '}',
+ 'Test End',
+ ]
+ );
$tester->terminate();
$tester->expectLogTerminatingNotices();
$tester->close();