diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2017-05-05 14:54:03 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2017-05-05 14:54:03 +0200 |
commit | 89f108b45ae94cd827595461b39f869111092579 (patch) | |
tree | ad4b3a5b9bc5798d211fb210cc9fa5dad991153b /tests/Wallabag | |
parent | d09fe4d233477d5cb9bfc613799b05a7ca14e270 (diff) | |
download | wallabag-89f108b45ae94cd827595461b39f869111092579.tar.gz wallabag-89f108b45ae94cd827595461b39f869111092579.tar.zst wallabag-89f108b45ae94cd827595461b39f869111092579.zip |
Fixed @j0k3r review
Diffstat (limited to 'tests/Wallabag')
-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()); |