1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-15 18:57:05 +00:00

Remove useless command input parameter

This commit is contained in:
Yassine Guedidi 2022-09-03 02:28:07 +02:00 committed by Jérémy Benoist
parent 17497275b2
commit e32794e9d6
10 changed files with 15 additions and 74 deletions

View file

@ -53,9 +53,7 @@ class ReloadEntryCommandTest extends WallabagCoreTestCase
$command = $application->find('wallabag:entry:reload');
$tester = new CommandTester($command);
$tester->execute([
'command' => $command->getName(),
], [
$tester->execute([], [
'interactive' => false,
]);
@ -81,7 +79,6 @@ class ReloadEntryCommandTest extends WallabagCoreTestCase
$command = $application->find('wallabag:entry:reload');
$tester = new CommandTester($command);
$tester->execute([
'command' => $command->getName(),
'username' => 'admin',
], [
'interactive' => false,
@ -105,7 +102,6 @@ class ReloadEntryCommandTest extends WallabagCoreTestCase
$command = $application->find('wallabag:entry:reload');
$tester = new CommandTester($command);
$tester->execute([
'command' => $command->getName(),
'username' => 'empty',
], [
'interactive' => false,