fix merge

This commit is contained in:
Nicolas Grekas 2017-07-12 16:37:06 +02:00
parent e51c1a5658
commit 2b2c0b7c97

View File

@ -174,7 +174,7 @@ class CookieTest extends TestCase
{
$cookie = new Cookie('foo', 'b a r', 0, '/', null, false, false);
$this->assertFalse($cookie->isRaw());
$this->assertEquals('foo=b+a+r; path=/', (string) $cookie);
$this->assertEquals('foo=b%20a%20r; path=/', (string) $cookie);
$cookie = new Cookie('foo', 'b+a+r', 0, '/', null, false, false, true);
$this->assertTrue($cookie->isRaw());