aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php
diff options
context:
space:
mode:
authorJeremy <jeremy.benoist@gmail.com>2015-01-31 09:15:51 +0100
committerJeremy <jeremy.benoist@gmail.com>2015-01-31 09:35:50 +0100
commitaa6e27cf4fbbb4713b1cdc933c4719ae9da78c71 (patch)
tree6089b5574ef56991d36701c84754f420cc3bd64f /src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php
parent4ffc77d9f574fd91e9ac811754c2aa42a06e582f (diff)
downloadwallabag-aa6e27cf4fbbb4713b1cdc933c4719ae9da78c71.tar.gz
wallabag-aa6e27cf4fbbb4713b1cdc933c4719ae9da78c71.tar.zst
wallabag-aa6e27cf4fbbb4713b1cdc933c4719ae9da78c71.zip
Tests are working again
Diffstat (limited to 'src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php')
-rw-r--r--src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php
index af20f31f..786ff811 100644
--- a/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php
+++ b/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php
@@ -10,9 +10,8 @@ class EntryControllerTest extends WebTestCase
10 { 10 {
11 $client = static::createClient(); 11 $client = static::createClient();
12 12
13 $crawler = $client->request('GET', '/app/index'); 13 $crawler = $client->request('GET', '/new');
14 14
15 $this->assertEquals(200, $client->getResponse()->getStatusCode()); 15 $this->assertEquals(200, $client->getResponse()->getStatusCode());
16 $this->assertTrue($crawler->filter('html:contains("Homepage")')->count() > 0);
17 } 16 }
18} 17}