File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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);
You can’t perform that action at this time.
0 commit comments