aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/CoreBundle/Command/ShowUserCommandTest.php
diff options
context:
space:
mode:
authorNicolas Hart <contact@nclshart.net>2017-07-29 00:30:22 +0200
committerNicolas Hart <contact@nclshart.net>2017-07-29 11:09:02 +0200
commite1b33efb3dd7c9ebb4dcfb23a2ca5efbda0a05f6 (patch)
treecc4a14dca4b1d533671c45b871d441308cdee545 /tests/Wallabag/CoreBundle/Command/ShowUserCommandTest.php
parent233eb91be4bd381ff48de0a15aff94415a3f2797 (diff)
downloadwallabag-e1b33efb3dd7c9ebb4dcfb23a2ca5efbda0a05f6.tar.gz
wallabag-e1b33efb3dd7c9ebb4dcfb23a2ca5efbda0a05f6.tar.zst
wallabag-e1b33efb3dd7c9ebb4dcfb23a2ca5efbda0a05f6.zip
Better rendering for all core commands
Diffstat (limited to 'tests/Wallabag/CoreBundle/Command/ShowUserCommandTest.php')
-rw-r--r--tests/Wallabag/CoreBundle/Command/ShowUserCommandTest.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/Wallabag/CoreBundle/Command/ShowUserCommandTest.php b/tests/Wallabag/CoreBundle/Command/ShowUserCommandTest.php
index c0a4acfa..9b34f2a0 100644
--- a/tests/Wallabag/CoreBundle/Command/ShowUserCommandTest.php
+++ b/tests/Wallabag/CoreBundle/Command/ShowUserCommandTest.php
@@ -56,9 +56,9 @@ class ShowUserCommandTest extends WallabagCoreTestCase
56 'username' => 'admin', 56 'username' => 'admin',
57 ]); 57 ]);
58 58
59 $this->assertContains('Username : admin', $tester->getDisplay()); 59 $this->assertContains('Username: admin', $tester->getDisplay());
60 $this->assertContains('Email : bigboss@wallabag.org', $tester->getDisplay()); 60 $this->assertContains('Email: bigboss@wallabag.org', $tester->getDisplay());
61 $this->assertContains('Display name : Big boss', $tester->getDisplay()); 61 $this->assertContains('Display name: Big boss', $tester->getDisplay());
62 $this->assertContains('2FA activated: no', $tester->getDisplay()); 62 $this->assertContains('2FA activated: no', $tester->getDisplay());
63 } 63 }
64 64
@@ -88,6 +88,6 @@ class ShowUserCommandTest extends WallabagCoreTestCase
88 'username' => 'admin', 88 'username' => 'admin',
89 ]); 89 ]);
90 90
91 $this->assertContains('Display name : Bug boss', $tester->getDisplay()); 91 $this->assertContains('Display name: Bug boss', $tester->getDisplay());
92 } 92 }
93} 93}