mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 08:15:14 +00:00
Fixed unit test
This commit is contained in:
parent
c2c4d06f7b
commit
66fec608a1
@ -164,7 +164,6 @@ class Resque_Worker
|
|||||||
$this->log('Starting blocking with timeout of ' . $interval, self::LOG_VERBOSE);
|
$this->log('Starting blocking with timeout of ' . $interval, self::LOG_VERBOSE);
|
||||||
$this->updateProcLine('Waiting for ' . implode(',', $this->queues) . ' with blocking timeout ' . $interval);
|
$this->updateProcLine('Waiting for ' . implode(',', $this->queues) . ' with blocking timeout ' . $interval);
|
||||||
} else {
|
} else {
|
||||||
$this->log('Starting with interval of ' . $interval, self::LOG_VERBOSE);
|
|
||||||
$this->updateProcLine('Waiting for ' . implode(',', $this->queues) . ' with interval ' . $interval);
|
$this->updateProcLine('Waiting for ' . implode(',', $this->queues) . ' with interval ' . $interval);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -257,7 +257,7 @@ class Resque_Tests_WorkerTest extends Resque_Tests_TestCase
|
|||||||
Resque::enqueue('jobs', 'Test_Job_2');
|
Resque::enqueue('jobs', 'Test_Job_2');
|
||||||
|
|
||||||
$i = 1;
|
$i = 1;
|
||||||
while($job = $worker->reserve(60))
|
while($job = $worker->reserve(true, 1))
|
||||||
{
|
{
|
||||||
$this->assertEquals('Test_Job_' . $i, $job->payload['class']);
|
$this->assertEquals('Test_Job_' . $i, $job->payload['class']);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user