Skip to content

Commit

Permalink
Minor tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
javiereguiluz committed Mar 6, 2020
1 parent 643e877 commit e54fd8c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/Controller/BlogControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,13 @@ public function testIndex()
$client = static::createClient();
$crawler = $client->request('GET', '/en/blog/');

$this->assertResponseIsSuccessful();

$this->assertCount(
Post::NUM_ITEMS,
$crawler->filter('article.post'),
'The homepage displays the right number of posts.'
);
$this->assertResponseIsSuccessful();
}

public function testRss()
Expand Down

0 comments on commit e54fd8c

Please sign in to comment.