[HttpFoundation] Fix wrong assertion in Response test

This commit is contained in:
Joseph Bielawski 2014-07-10 09:54:15 +02:00
parent 162a025c5d
commit 3d63f801ff

View File

@ -374,7 +374,7 @@ class ResponseTest extends ResponseTestCase
$response->prepare($request);
$this->assertEquals('', $response->getContent());
$this->assertFalse($response->headers->has('Content-Type'));
$this->assertTrue($response->headers->has('Content-Type'));
$this->assertFalse($response->headers->has('Content-Length'));
}