aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/ImportBundle/Controller/ImportControllerTest.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-11-06 09:58:07 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-11-06 09:58:07 +0100
commite92fbdc85274587e67e09ab8169247244f5e4dac (patch)
treeadce5e1cfc1ac31719901f4fe8fecbef941d2953 /tests/Wallabag/ImportBundle/Controller/ImportControllerTest.php
parent9ab024b4f5388e2a41c50a8a2b79e4033788782a (diff)
downloadwallabag-e92fbdc85274587e67e09ab8169247244f5e4dac.tar.gz
wallabag-e92fbdc85274587e67e09ab8169247244f5e4dac.tar.zst
wallabag-e92fbdc85274587e67e09ab8169247244f5e4dac.zip
Fix tests
Diffstat (limited to 'tests/Wallabag/ImportBundle/Controller/ImportControllerTest.php')
-rw-r--r--tests/Wallabag/ImportBundle/Controller/ImportControllerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Wallabag/ImportBundle/Controller/ImportControllerTest.php b/tests/Wallabag/ImportBundle/Controller/ImportControllerTest.php
index 0bc40bdd..5e57dcef 100644
--- a/tests/Wallabag/ImportBundle/Controller/ImportControllerTest.php
+++ b/tests/Wallabag/ImportBundle/Controller/ImportControllerTest.php
@@ -24,6 +24,6 @@ class ImportControllerTest extends WallabagCoreTestCase
24 $crawler = $client->request('GET', '/import/'); 24 $crawler = $client->request('GET', '/import/');
25 25
26 $this->assertEquals(200, $client->getResponse()->getStatusCode()); 26 $this->assertEquals(200, $client->getResponse()->getStatusCode());
27 $this->assertEquals(7, $crawler->filter('blockquote')->count()); 27 $this->assertEquals(8, $crawler->filter('blockquote')->count());
28 } 28 }
29} 29}