From 7a6519989c7286db999562a68a682b6d6be16a3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Fri, 28 Jul 2023 22:40:30 +0200 Subject: [PATCH] Fix a typo in QueueAllTest --- tests/QueueAllTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/QueueAllTest.php b/tests/QueueAllTest.php index 78df102..31f2026 100644 --- a/tests/QueueAllTest.php +++ b/tests/QueueAllTest.php @@ -20,7 +20,7 @@ public function testAllRejectsIfHandlerIsInvalid() Queue::all(1, array(), 'foobar')->then(null, $this->expectCallableOnce()); } - public function testWillResolveWithtEmptyArrayWithoutInvokingHandlerWhenJobsAreEmpty() + public function testWillResolveWithEmptyArrayWithoutInvokingHandlerWhenJobsAreEmpty() { $promise = Queue::all(1, array(), $this->expectCallableNever());