From: Jeremy Benoist Date: Mon, 18 Dec 2017 09:29:42 +0000 (+0100) Subject: Add missing assertion in tests X-Git-Tag: 2.3.1~5^2~1 X-Git-Url: https://git.immae.eu/?p=github%2Fwallabag%2Fwallabag.git;a=commitdiff_plain;h=acc0a801798d624cfab44ea04769a46dfa54b49b Add missing assertion in tests --- diff --git a/tests/Wallabag/ImportBundle/Command/ImportCommandTest.php b/tests/Wallabag/ImportBundle/Command/ImportCommandTest.php index 30aee4d8..f95320a4 100644 --- a/tests/Wallabag/ImportBundle/Command/ImportCommandTest.php +++ b/tests/Wallabag/ImportBundle/Command/ImportCommandTest.php @@ -97,5 +97,8 @@ class ImportCommandTest extends WallabagCoreTestCase '--useUserId' => true, '--importer' => 'v2', ]); + + $this->assertContains('imported', $tester->getDisplay()); + $this->assertContains('already saved', $tester->getDisplay()); } }