Fixed tests

This commit is contained in:
Alex Renoki 2020-09-26 10:51:36 +03:00
parent f39fa98f4d
commit d0b4f46aec
1 changed files with 4 additions and 0 deletions

View File

@ -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);