forked from wallabag/wallabag
Remove useless command input parameter
This commit is contained in:
committed by
Jérémy Benoist
parent
17497275b2
commit
e32794e9d6
@ -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,
|
||||
|
||||
Reference in New Issue
Block a user