1 parent eb56303 commit 2c57b72Copy full SHA for 2c57b72
1 file changed
tests/Integration/RedisProtocolTest.php
@@ -155,8 +155,11 @@ public function test_phpredis_raw_mode_is_applied_to_a_replacement_client(): voi
155
{
156
$connection = Redis::connection('normcache-test');
157
158
- if (!$connection instanceof PhpRedisConnection) {
159
- $this->markTestSkipped('PhpRedis only.');
+ if (
+ !$connection instanceof PhpRedisConnection
160
+ || !$connection->client() instanceof \Redis
161
+ ) {
162
+ $this->markTestSkipped('Standalone PhpRedis only.');
163
}
164
165
$store = app(RedisStore::class);
0 commit comments