diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Wallabag/CoreBundle/Command/CleanDuplicatesCommandTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Wallabag/CoreBundle/Command/CleanDuplicatesCommandTest.php b/tests/Wallabag/CoreBundle/Command/CleanDuplicatesCommandTest.php index 1f5921d2..688cc388 100644 --- a/tests/Wallabag/CoreBundle/Command/CleanDuplicatesCommandTest.php +++ b/tests/Wallabag/CoreBundle/Command/CleanDuplicatesCommandTest.php | |||
@@ -10,7 +10,7 @@ use Wallabag\CoreBundle\Entity\Entry; | |||
10 | 10 | ||
11 | class CleanDuplicatesCommandTest extends WallabagCoreTestCase | 11 | class CleanDuplicatesCommandTest extends WallabagCoreTestCase |
12 | { | 12 | { |
13 | public function testTagAll() | 13 | public function testRunCleanDuplicates() |
14 | { | 14 | { |
15 | $application = new Application($this->getClient()->getKernel()); | 15 | $application = new Application($this->getClient()->getKernel()); |
16 | $application->add(new CleanDuplicatesCommand()); | 16 | $application->add(new CleanDuplicatesCommand()); |
@@ -26,7 +26,7 @@ class CleanDuplicatesCommandTest extends WallabagCoreTestCase | |||
26 | $this->assertContains('Finished cleaning. 0 duplicates found in total', $tester->getDisplay()); | 26 | $this->assertContains('Finished cleaning. 0 duplicates found in total', $tester->getDisplay()); |
27 | } | 27 | } |
28 | 28 | ||
29 | public function testRunTagAllCommandWithBadUsername() | 29 | public function testRunCleanDuplicatesCommandWithBadUsername() |
30 | { | 30 | { |
31 | $application = new Application($this->getClient()->getKernel()); | 31 | $application = new Application($this->getClient()->getKernel()); |
32 | $application->add(new CleanDuplicatesCommand()); | 32 | $application->add(new CleanDuplicatesCommand()); |
@@ -42,7 +42,7 @@ class CleanDuplicatesCommandTest extends WallabagCoreTestCase | |||
42 | $this->assertContains('User "unknown" not found', $tester->getDisplay()); | 42 | $this->assertContains('User "unknown" not found', $tester->getDisplay()); |
43 | } | 43 | } |
44 | 44 | ||
45 | public function testRunTagAllCommandForUser() | 45 | public function testRunCleanDuplicatesCommandForUser() |
46 | { | 46 | { |
47 | $application = new Application($this->getClient()->getKernel()); | 47 | $application = new Application($this->getClient()->getKernel()); |
48 | $application->add(new CleanDuplicatesCommand()); | 48 | $application->add(new CleanDuplicatesCommand()); |