From f8a86a426d36031f186c1f58681adcc8a8b4d06b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Sun, 28 Jan 2024 00:06:06 +0100 Subject: [PATCH] set default redis client to predis in tests --- tests/TestCase.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/TestCase.php b/tests/TestCase.php index 6ac62f95..fe3fefb4 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -61,6 +61,7 @@ abstract class TestCase extends \Orchestra\Testbench\TestCase 'database.redis.cache.host' => env('TENANCY_TEST_REDIS_HOST', '127.0.0.1'), 'database.redis.default.host' => env('TENANCY_TEST_REDIS_HOST', '127.0.0.1'), 'database.redis.options.prefix' => 'foo', + 'database.redis.client' => 'predis', 'database.connections.central' => [ 'driver' => 'mysql', 'url' => env('DATABASE_URL'),