Skip to content

Commit 9d7e814

Browse files
committed
Fix tests
1 parent 4a501d4 commit 9d7e814

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Store/StoreFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function validConnections()
6060
yield ['memcached://server.com', MemcachedStore::class];
6161
yield ['memcached:?host[localhost]&host[localhost:12345]', MemcachedStore::class];
6262
}
63-
if ((class_exists(\Redis::class) || class_exists(\Predis\Client::class)) && class_exists(AbstractAdapter::class)) {
63+
if (class_exists(\Redis::class) && class_exists(AbstractAdapter::class)) {
6464
yield ['redis://localhost', RedisStore::class];
6565
yield ['redis://localhost?lazy=1', RedisStore::class];
6666
yield ['redis://localhost?redis_cluster=1', RedisStore::class];

0 commit comments

Comments
 (0)