Skip to content

Commit

Permalink
[HttpFoundation] Fix wrong assertion in Response test
Browse files Browse the repository at this point in the history
  • Loading branch information
stloyd committed Jul 10, 2014
1 parent 162a025 commit 3d63f80
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -374,7 +374,7 @@ public function testPrepareRemovesContentForHeadRequests()
$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'));
}

Expand Down

0 comments on commit 3d63f80

Please sign in to comment.