Skip to content
This repository was archived by the owner on Nov 27, 2020. It is now read-only.

Commit c40797d

Browse files
committed
fixed default tests in AppBundle
1 parent f98655c commit c40797d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/AppBundle/Tests/Controller/DefaultControllerTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ public function testIndex()
1010
{
1111
$client = static::createClient();
1212

13-
$crawler = $client->request('GET', '/');
13+
$crawler = $client->request('GET', '/app/example');
1414

15+
$this->assertEquals(200, $client->getResponse()->getStatusCode());
1516
$this->assertTrue($crawler->filter('html:contains("Homepage")')->count() > 0);
1617
}
1718
}

0 commit comments

Comments
 (0)