We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dcd6da commit ce2f10aCopy full SHA for ce2f10a
1 file changed
src/swoole/tests/Unit/SymfonyHttpBridgeTest.php
@@ -73,9 +73,9 @@ public function testThatSymfonyResponseIsReflected(): void
73
74
$response = $this->createMock(Response::class);
75
$expectedHeaders = [
76
- ['x-test', 'Swoole-Runtime'],
77
- ['set-cookie', $fooCookie],
78
- ['set-cookie', $barCookie],
+ ['X-Test', 'Swoole-Runtime'],
+ ['Set-Cookie', $fooCookie],
+ ['Set-Cookie', $barCookie],
79
];
80
$callCount = 0;
81
$response->expects(self::exactly(3))->method('header')
0 commit comments