]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Add missing assertion in tests
authorJeremy Benoist <jeremy.benoist@gmail.com>
Mon, 18 Dec 2017 09:29:42 +0000 (10:29 +0100)
committerJeremy Benoist <jeremy.benoist@gmail.com>
Mon, 18 Dec 2017 12:29:34 +0000 (13:29 +0100)
tests/Wallabag/ImportBundle/Command/ImportCommandTest.php

index 30aee4d8a7af2b3dc3a8d5d7ba0b4f3f1b14e451..f95320a4affae0f4968a4f592ea7e9115ef4cd31 100644 (file)
@@ -97,5 +97,8 @@ class ImportCommandTest extends WallabagCoreTestCase
             '--useUserId' => true,
             '--importer' => 'v2',
         ]);
+
+        $this->assertContains('imported', $tester->getDisplay());
+        $this->assertContains('already saved', $tester->getDisplay());
     }
 }