From: Thomas Citharel Date: Sun, 4 Jun 2017 15:57:40 +0000 (+0200) Subject: Fix review X-Git-Tag: 2.3.0~31^2~69^2 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=0d8ecb82a32fcb7e87d99316b00c827c8aa71eee;p=github%2Fwallabag%2Fwallabag.git Fix review Signed-off-by: Thomas Citharel --- diff --git a/src/Wallabag/CoreBundle/Command/ShowUserCommand.php b/src/Wallabag/CoreBundle/Command/ShowUserCommand.php index 10428c4b..0eeaabc4 100644 --- a/src/Wallabag/CoreBundle/Command/ShowUserCommand.php +++ b/src/Wallabag/CoreBundle/Command/ShowUserCommand.php @@ -53,9 +53,9 @@ class ShowUserCommand extends ContainerAwareCommand $this->output->writeln(sprintf('Username : %s', $user->getUsername())); $this->output->writeln(sprintf('Email : %s', $user->getEmail())); $this->output->writeln(sprintf('Display name : %s', $user->getName())); - $this->output->writeln(sprintf('Creation date : %s', $user->getCreatedAt() !== null ? $user->getCreatedAt()->format('Y-m-d H:i:s') : 'false')); - $this->output->writeln(sprintf('Last login : %s', $user->getLastLogin() !== null ? $user->getLastLogin()->format('Y-m-d H:i:s') : 'false')); - $this->output->writeln(sprintf('2FA activated: %s', $user->isTwoFactorAuthentication() ? 'true' : 'false')); + $this->output->writeln(sprintf('Creation date : %s', $user->getCreatedAt()->format('Y-m-d H:i:s'))); + $this->output->writeln(sprintf('Last login : %s', $user->getLastLogin() !== null ? $user->getLastLogin()->format('Y-m-d H:i:s') : 'never')); + $this->output->writeln(sprintf('2FA activated: %s', $user->isTwoFactorAuthentication() ? 'yes' : 'no')); } /** diff --git a/tests/Wallabag/CoreBundle/Command/ShowUserCommandTest.php b/tests/Wallabag/CoreBundle/Command/ShowUserCommandTest.php index 642327c3..3b928d1e 100644 --- a/tests/Wallabag/CoreBundle/Command/ShowUserCommandTest.php +++ b/tests/Wallabag/CoreBundle/Command/ShowUserCommandTest.php @@ -61,7 +61,7 @@ class ShowUserCommandTest extends WallabagCoreTestCase $this->assertContains('Username : admin', $tester->getDisplay()); $this->assertContains('Email : bigboss@wallabag.org', $tester->getDisplay()); $this->assertContains('Display name : Big boss', $tester->getDisplay()); - $this->assertContains('2FA activated: false', $tester->getDisplay()); + $this->assertContains('2FA activated: no', $tester->getDisplay()); } public function testShowUser()