From 38902a2f0448994ba3429a82b11f9c6db292b532 Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Mon, 8 Feb 2021 09:57:10 +0100 Subject: [PATCH] Fix test --- tests/Wallabag/ImportBundle/Controller/ImportControllerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Wallabag/ImportBundle/Controller/ImportControllerTest.php b/tests/Wallabag/ImportBundle/Controller/ImportControllerTest.php index 8156d9c0e..ae322f975 100644 --- a/tests/Wallabag/ImportBundle/Controller/ImportControllerTest.php +++ b/tests/Wallabag/ImportBundle/Controller/ImportControllerTest.php @@ -24,6 +24,6 @@ class ImportControllerTest extends WallabagCoreTestCase $crawler = $client->request('GET', '/import/'); $this->assertSame(200, $client->getResponse()->getStatusCode()); - $this->assertSame(9, $crawler->filter('blockquote')->count()); + $this->assertSame(10, $crawler->filter('blockquote')->count()); } }