summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorSean Molenaar <sean@seanmolenaar.eu>2021-03-25 22:57:28 +0100
committerSean Molenaar <SMillerDev@users.noreply.github.com>2021-03-30 12:58:47 +0200
commit7a2b3ccfa8835c461ffca89ead1ecf76ea90ba1e (patch)
tree4091f5e5ac168873c6cd531015d54bc218ba4fcf /lib
parenta6c9b30d587a50ef00c24f56d71f243c831fdff4 (diff)
chore: Improve test coverage
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
Diffstat (limited to 'lib')
-rw-r--r--lib/Command/Debug/FeedItemList.php2
-rw-r--r--lib/Command/Debug/ItemList.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/Command/Debug/FeedItemList.php b/lib/Command/Debug/FeedItemList.php
index 49820993c..ba3e995b3 100644
--- a/lib/Command/Debug/FeedItemList.php
+++ b/lib/Command/Debug/FeedItemList.php
@@ -63,7 +63,7 @@ class FeedItemList extends Command
$feed = $input->getArgument('feed');
if (!is_numeric($feed)) {
- $output->writeln('Invalid Type!');
+ $output->writeln('Invalid feed ID!');
return 255;
}
diff --git a/lib/Command/Debug/ItemList.php b/lib/Command/Debug/ItemList.php
index 06f8b1c1b..18a2ba56c 100644
--- a/lib/Command/Debug/ItemList.php
+++ b/lib/Command/Debug/ItemList.php
@@ -63,7 +63,7 @@ class ItemList extends Command
$type = $input->getOption('type');
if (!is_numeric($type)) {
- $output->writeln('Invalid Type!');
+ $output->writeln('Invalid type!');
return 255;
}
$limit = $input->getOption('limit');