8000 Expanded fault-tolerance for unusual cookie dates by ecaron · Pull Request #7149 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Expanded fault-tolerance for unusual cookie dates #7149

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Re-incorporating a typo that was meant to be included
  • Loading branch information
ecaron committed Feb 21, 2013
commit 9ebec8aebc78e0073887d9b4c0fb877904df4585
2 changes: 1 addition & 1 deletion src/Symfony/Component/BrowserKit/Tests/CookieTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public function testFromStringThrowsAnExceptionIfCookieIsNotValid()
public function testFromStringThrowsAnExceptionIfCookieDateIsNotValid()
{
$this->setExpectedException('InvalidArgumentException');
Cookie::FromString('foo=bar; expires=Friday July 31st 2020, 08:49:37 GMT');
Cookie::FromString('foo=bar; expires=Flursday July 31st 2020, 08:49:37 GMT');
}

public function testFromStringThrowsAnExceptionIfUrlIsNotValid()
Expand Down
0