Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Mar 11, 2019
1 parent 3a52e44 commit f2c48c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/Factory/AbstractHttpMessageFactoryTest.php
Expand Up @@ -149,7 +149,7 @@ public function testCreateResponse()
202,
array('X-Symfony' => array('3.4'))
);
$response->headers->setCookie(new Cookie('city', 'Lille', new \DateTime('Wed, 13 Jan 2021 22:23:01 GMT')));
$response->headers->setCookie(new Cookie('city', 'Lille', new \DateTime('Wed, 13 Jan 2021 22:23:01 GMT'), '/', null, false, true, false, ''));

$psrResponse = $this->factory->createResponse($response);
$this->assertEquals('Response content.', $psrResponse->getBody()->__toString());
Expand Down

0 comments on commit f2c48c5

Please sign in to comment.