Skip to content

Commit

Permalink
fixed missing spaces in the test
Browse files Browse the repository at this point in the history
  • Loading branch information
odino committed Feb 15, 2012
1 parent 43c4872 commit 7d094e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Symfony/Tests/Component/HttpFoundation/ResponseTest.php
Expand Up @@ -343,21 +343,21 @@ public function testIsInvalid()
try { try {
$response->setStatusCode(99); $response->setStatusCode(99);
$this->fail(); $this->fail();
} catch(\InvalidArgumentException $e) { } catch (\InvalidArgumentException $e) {
$this->assertTrue($response->isInvalid()); $this->assertTrue($response->isInvalid());
} }


try { try {
$response->setStatusCode(650); $response->setStatusCode(650);
$this->fail(); $this->fail();
} catch(\InvalidArgumentException $e) { } catch (\InvalidArgumentException $e) {
$this->assertTrue($response->isInvalid()); $this->assertTrue($response->isInvalid());
} }


try { try {
$response->setStatusCode(422); $response->setStatusCode(422);
$this->fail(); $this->fail();
} catch(\InvalidArgumentException $e) { } catch (\InvalidArgumentException $e) {
$this->assertTrue($response->isInvalid()); $this->assertTrue($response->isInvalid());
} }


Expand Down

0 comments on commit 7d094e2

Please sign in to comment.