From 33dccabc998e57e3b4f6efe0a678e25071cd8c50 Mon Sep 17 00:00:00 2001 From: Tri Tran Date: Tue, 12 Dec 2017 10:27:59 +0700 Subject: [PATCH] Adjust the test case --- Tests/Functional/Command/QueueWorkerCommandTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/Functional/Command/QueueWorkerCommandTest.php b/Tests/Functional/Command/QueueWorkerCommandTest.php index fee7e8e..6ed3292 100644 --- a/Tests/Functional/Command/QueueWorkerCommandTest.php +++ b/Tests/Functional/Command/QueueWorkerCommandTest.php @@ -57,7 +57,7 @@ public function testExecuteWithInvalidAmountMessages() $this->expectException(\InvalidArgumentException::class); $commandTester->execute([ - 'name' => 'non-existing-queue', + 'name' => 'basic_queue', '--messages' => -1 ]); }