aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2017-12-18 10:29:42 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2017-12-18 13:29:34 +0100
commitacc0a801798d624cfab44ea04769a46dfa54b49b (patch)
tree210a9d2e5a0c61ea08c61ec66ff7bc0f581acc40
parent5661e8d42af5d0557bf8017b515c51335757d6f2 (diff)
downloadwallabag-acc0a801798d624cfab44ea04769a46dfa54b49b.tar.gz
wallabag-acc0a801798d624cfab44ea04769a46dfa54b49b.tar.zst
wallabag-acc0a801798d624cfab44ea04769a46dfa54b49b.zip
Add missing assertion in tests
-rw-r--r--tests/Wallabag/ImportBundle/Command/ImportCommandTest.php3
1 files changed, 3 insertions, 0 deletions
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
97 '--useUserId' => true, 97 '--useUserId' => true,
98 '--importer' => 'v2', 98 '--importer' => 'v2',
99 ]); 99 ]);
100
101 $this->assertContains('imported', $tester->getDisplay());
102 $this->assertContains('already saved', $tester->getDisplay());
100 } 103 }
101} 104}