Skip to content

Commit a712223

Browse files
committed
Fixing a couple more integration test cases
1 parent 9e144f0 commit a712223

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/Integration/Queue/FactoryTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@ public function test_makeBackend_shouldFailToCreateASentinelInstance_IfNotFullyC
6363
$this->expectException(\Exception::class);
6464
$this->expectExceptionMessage('You must configure a sentinel master name');
6565

66-
Config::getInstance()->QueuedTracking = array('useSentinelBackend' => '1', 'sentinelMasterName' => '');
66+
Config::getInstance()->QueuedTracking = array('useWhatRedisBackendType' => '2', 'sentinelMasterName' => '');
6767
Factory::makeBackend();
6868
}
6969

7070
public function test_makeBackend_shouldReturnASentinelInstanceIfConfigured()
7171
{
72-
Config::getInstance()->QueuedTracking = array('useSentinelBackend' => '1', 'sentinelMasterName' => 'mymaster');
72+
Config::getInstance()->QueuedTracking = array('useWhatRedisBackendType' => '2', 'sentinelMasterName' => 'mymaster');
7373
$backend = Factory::makeBackend();
7474
Config::getInstance()->QueuedTracking = array();
7575
$this->assertTrue($backend instanceof Queue\Backend\Sentinel);

0 commit comments

Comments
 (0)