From a022b907bafab0f8615757c7b150c5f1010fb7fb Mon Sep 17 00:00:00 2001 From: Lonnie Ezell Date: Sun, 24 Jun 2018 22:46:27 -0500 Subject: [PATCH] Fixing redis cache tests. --- tests/system/Cache/Handlers/RedisHandlerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system/Cache/Handlers/RedisHandlerTest.php b/tests/system/Cache/Handlers/RedisHandlerTest.php index ea368d4cb954..fcdc9baf27e0 100644 --- a/tests/system/Cache/Handlers/RedisHandlerTest.php +++ b/tests/system/Cache/Handlers/RedisHandlerTest.php @@ -57,7 +57,7 @@ public function setUp() $this->config = new \Config\Cache(); - $this->redisHandler = new RedisHandler($this->config->redis); + $this->redisHandler = new RedisHandler($this->config); if (!$this->redisHandler->isSupported()) { $this->markTestSkipped('Not support redis'); }