aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Command
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-01-21 16:36:17 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-01-21 16:36:17 +0100
commit27ea492cf72657a7ba2deb3d45302923ddd289b8 (patch)
tree6984ea3dbf2709a8eb71f882b5161724bea5543a /src/Wallabag/CoreBundle/Command
parent7a0e6970b447b270c09e16fc7ee4098f736a7a12 (diff)
downloadwallabag-27ea492cf72657a7ba2deb3d45302923ddd289b8.tar.gz
wallabag-27ea492cf72657a7ba2deb3d45302923ddd289b8.tar.zst
wallabag-27ea492cf72657a7ba2deb3d45302923ddd289b8.zip
Add tests on TagAllCommand
Some simple tests
Diffstat (limited to 'src/Wallabag/CoreBundle/Command')
-rw-r--r--src/Wallabag/CoreBundle/Command/TagAllCommand.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Command/TagAllCommand.php b/src/Wallabag/CoreBundle/Command/TagAllCommand.php
index 2cf3f808..db1a9ab7 100644
--- a/src/Wallabag/CoreBundle/Command/TagAllCommand.php
+++ b/src/Wallabag/CoreBundle/Command/TagAllCommand.php
@@ -28,7 +28,7 @@ class TagAllCommand extends ContainerAwareCommand
28 try { 28 try {
29 $user = $this->getUser($input->getArgument('username')); 29 $user = $this->getUser($input->getArgument('username'));
30 } catch (NoResultException $e) { 30 } catch (NoResultException $e) {
31 $output->writeln(sprintf('<error>User %s not found.</error>', $input->getArgument('username'))); 31 $output->writeln(sprintf('<error>User "%s" not found.</error>', $input->getArgument('username')));
32 32
33 return 1; 33 return 1;
34 } 34 }