aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/CoreBundle/Command/ExportCommandTest.php
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2017-07-30 08:31:04 +0200
committerGitHub <noreply@github.com>2017-07-30 08:31:04 +0200
commit882da5c5eb283cbc7a869182b26a69b8fbebda2b (patch)
treeaae7d4b497a77a1b2eeb5b82c1a0f2d56865e64b /tests/Wallabag/CoreBundle/Command/ExportCommandTest.php
parent4fc7eba34904a062cddf1e61956c48f27cb2e06c (diff)
parente1b33efb3dd7c9ebb4dcfb23a2ca5efbda0a05f6 (diff)
downloadwallabag-882da5c5eb283cbc7a869182b26a69b8fbebda2b.tar.gz
wallabag-882da5c5eb283cbc7a869182b26a69b8fbebda2b.tar.zst
wallabag-882da5c5eb283cbc7a869182b26a69b8fbebda2b.zip
Merge pull request #3297 from nclsHart/commands-better-rendering
Better rendering for all core commands
Diffstat (limited to 'tests/Wallabag/CoreBundle/Command/ExportCommandTest.php')
-rw-r--r--tests/Wallabag/CoreBundle/Command/ExportCommandTest.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/Wallabag/CoreBundle/Command/ExportCommandTest.php b/tests/Wallabag/CoreBundle/Command/ExportCommandTest.php
index 25de2730..210b2ab6 100644
--- a/tests/Wallabag/CoreBundle/Command/ExportCommandTest.php
+++ b/tests/Wallabag/CoreBundle/Command/ExportCommandTest.php
@@ -55,7 +55,8 @@ class ExportCommandTest extends WallabagCoreTestCase
55 'username' => 'admin', 55 'username' => 'admin',
56 ]); 56 ]);
57 57
58 $this->assertContains('Exporting 5 entrie(s) for user « admin »... Done', $tester->getDisplay()); 58 $this->assertContains('Exporting 5 entrie(s) for user admin...', $tester->getDisplay());
59 $this->assertContains('Done', $tester->getDisplay());
59 $this->assertFileExists('admin-export.json'); 60 $this->assertFileExists('admin-export.json');
60 } 61 }
61 62