diff --git a/tests/Integration/QueueTest.php b/tests/Integration/QueueTest.php index cc8ed70..7b50975 100644 --- a/tests/Integration/QueueTest.php +++ b/tests/Integration/QueueTest.php @@ -257,6 +257,9 @@ public function testStats() 'touch' => 0, 'put' => 5, 'bury' => 2, + 'ttr' => 0, + 'delay' => 0, + 'ttl' => 0, ], ], $stats, '', 0.0, 3, true); } @@ -283,6 +286,9 @@ public function testEmptyStats() 'release' => 0, 'take' => 0, 'touch' => 0, + 'ttr' => 0, + 'delay' => 0, + 'ttl' => 0, ], ], $stats); } @@ -338,6 +344,9 @@ public function testStatsPath() 'touch' => 0, 'put' => 10, 'bury' => 3, + 'ttr' => 0, + 'delay' => 0, + 'ttl' => 0, ], $this->queue->stats('calls')); $this->assertSame(1, $this->queue->stats('calls.ack'));