Skip to content

Commit f2f6378

Browse files
committed
Fix prefer-lowest builds
1 parent 8d6d0a6 commit f2f6378

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Psr6StoreTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ public function testLookupWithVaryOnCookies()
340340
// Cookies match
341341
$request = Request::create('https://foobar.com/', 'GET', [], ['Foo' => 'Bar'], [], ['HTTP_COOKIE' => 'Foo=Bar']);
342342
$response = new Response('hello world', 200, ['Vary' => 'Cookie']);
343-
$response->headers->setCookie(Cookie::create('Foo', 'Bar'));
343+
$response->headers->setCookie(new Cookie('Foo', 'Bar'));
344344

345345
$this->store->write($request, $response);
346346

0 commit comments

Comments
 (0)