aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/ImportBundle
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-09-01 09:36:11 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-09-01 09:36:11 +0200
commitca15aaac188a1ad4b08595d3dbb06634320183ed (patch)
tree1d4058a25e675ebab4f532cdbfbdea4b343ae359 /tests/Wallabag/ImportBundle
parent03e3753f6bd36f12c0757c76b49b683c49de48ae (diff)
downloadwallabag-ca15aaac188a1ad4b08595d3dbb06634320183ed.tar.gz
wallabag-ca15aaac188a1ad4b08595d3dbb06634320183ed.tar.zst
wallabag-ca15aaac188a1ad4b08595d3dbb06634320183ed.zip
Fix import count tests
Diffstat (limited to 'tests/Wallabag/ImportBundle')
-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 96b5300b..d869cdf9 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(3, $crawler->filter('blockquote')->count()); 27 $this->assertEquals(4, $crawler->filter('blockquote')->count());
28 } 28 }
29} 29}