8000 fix merge · symfony/symfony@2b2c0b7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2b2c0b7

Browse files
fix merge
1 parent e51c1a5 commit 2b2c0b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/HttpFoundation/Tests/CookieTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ public function testRawCookie()
174174
{
175175
$cookie = new Cookie('foo', 'b a r', 0, '/', null, false, false);
176176
$this->assertFalse($cookie->isRaw());
177-
$this->assertEquals('foo=b+a+r; path=/', (string) $cookie);
177+
$this->assertEquals('foo=b%20a%20r; path=/', (string) $cookie);
178178

179179
$cookie = new Cookie('foo', 'b+a+r', 0, '/', null, false, false, true);
180180
$this->assertTrue($cookie->isRaw());

0 commit comments

Comments
 (0)
0