From d0b4f46aec5045c24fabf6b42b386703ce993382 Mon Sep 17 00:00:00 2001 From: Alex Renoki Date: Sat, 26 Sep 2020 10:51:36 +0300 Subject: [PATCH] Fixed tests --- tests/AsyncRedisQueueTest.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/AsyncRedisQueueTest.php b/tests/AsyncRedisQueueTest.php index a7973fd..da3b257 100644 --- a/tests/AsyncRedisQueueTest.php +++ b/tests/AsyncRedisQueueTest.php @@ -138,6 +138,10 @@ class AsyncRedisQueueTest extends TestCase public function test_clear_job() { + if (! method_exists($this->queue, 'clear')) { + $this->markTestSkipped('The Queue has no clear() method to test.'); + } + $job1 = new RedisQueueIntegrationTestJob(30); $job2 = new RedisQueueIntegrationTestJob(40);