Unverified Commit c1ea92e9 authored by Denisson Leal's avatar Denisson Leal Committed by GitHub

change var name

Co-Authored-By: 's avataresron <esron.dtamar@gmail.com>
parent 86c019e5
...@@ -68,7 +68,7 @@ class QueueTest extends TestCase ...@@ -68,7 +68,7 @@ class QueueTest extends TestCase
{ {
$job_id = Queue::push('test1', ['action' => 'QueueJobExpired'], 'test'); $job_id = Queue::push('test1', ['action' => 'QueueJobExpired'], 'test');
$this->assertNotNull($job_id); $this->assertNotNull($job_id);
$id = Queue::push('test2', ['action' => 'QueueJobExpired'], 'test'); $job_id = Queue::push('test2', ['action' => 'QueueJobExpired'], 'test');
$this->assertNotNull($id); $this->assertNotNull($id);
$job = Queue::pop('test'); $job = Queue::pop('test');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment