aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-01-31 10:29:30 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-01-31 10:29:30 +0100
commit71691fe44a7b2a80f3b9d96d54720cce7994ad08 (patch)
tree6089b5574ef56991d36701c84754f420cc3bd64f /src
parentfdcbdda1ade822e038727ff1b653b9702ba75d6a (diff)
parentaa6e27cf4fbbb4713b1cdc933c4719ae9da78c71 (diff)
downloadwallabag-71691fe44a7b2a80f3b9d96d54720cce7994ad08.tar.gz
wallabag-71691fe44a7b2a80f3b9d96d54720cce7994ad08.tar.zst
wallabag-71691fe44a7b2a80f3b9d96d54720cce7994ad08.zip
Merge pull request #1035 from j0k3r/refactor
Tests are working again
Diffstat (limited to 'src')
-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}