summaryrefslogtreecommitdiffstats
path: root/tests/Unit/Command/ExploreGeneratorTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Command/ExploreGeneratorTest.php')
-rw-r--r--tests/Unit/Command/ExploreGeneratorTest.php8
1 files changed, 2 insertions, 6 deletions
diff --git a/tests/Unit/Command/ExploreGeneratorTest.php b/tests/Unit/Command/ExploreGeneratorTest.php
index 213633549..4512e206c 100644
--- a/tests/Unit/Command/ExploreGeneratorTest.php
+++ b/tests/Unit/Command/ExploreGeneratorTest.php
@@ -136,13 +136,9 @@ class ExploreGeneratorTest extends TestCase {
->with('votes')
->willReturn(100);
- $this->consoleOutput->expects($this->at(0))
+ $this->consoleOutput->expects($this->exactly(2))
->method('writeln')
- ->with($this->stringContains('<error>'));
-
- $this->consoleOutput->expects($this->at(1))
- ->method('writeln')
- ->with($this->stringContains('Failure'));
+ ->withConsecutive(['<error>Failed to fetch feed info:</error>'], ['Failure']);
self::invokePrivate($this->command, 'execute', [$this->consoleInput, $this->consoleOutput]);
}