8000 revert #6002 by Tobion · Pull Request #6004 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

revert #6002 #6004

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 2 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
added test for bogus "fix"
  • Loading branch information
Tobion committed Nov 13, 2012
commit 985da686caec34f2b00b399c99e5ef6244923aa1
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ public function testFirst()
{
$header = AcceptHeader::fromString('text/plain; q=0.5, text/html, text/x-dvi; q=0.8, text/x-c');
$this->assertSame('text/html', $header->first()->getValue());

$header = new AcceptHeader($header->all());
$this->assertSame('text/html', $header->first()->getValue());
}

/**
Expand Down
0