diff --git a/tests/Integration/Cache/PhpRedisCacheLockTest.php b/tests/Integration/Cache/PhpRedisCacheLockTest.php index fe40f2ac3fe3..1ebc7cc94d87 100644 --- a/tests/Integration/Cache/PhpRedisCacheLockTest.php +++ b/tests/Integration/Cache/PhpRedisCacheLockTest.php @@ -193,15 +193,6 @@ public function testRedisLockCanBeAcquiredAndReleasedWithZstdCompression() $lock->release(); $this->assertNull($store->lockConnection()->get($store->getPrefix().'foo')); - $client->setOption(Redis::OPT_COMPRESSION_LEVEL, Redis::COMPRESSION_ZSTD_MIN); - $store->lock('foo')->forceRelease(); - $this->assertNull($store->lockConnection()->get($store->getPrefix().'foo')); - $lock = $store->lock('foo', 10); - $this->assertTrue($lock->get()); - $this->assertFalse($store->lock('foo', 10)->get()); - $lock->release(); - $this->assertNull($store->lockConnection()->get($store->getPrefix().'foo')); - $client->setOption(Redis::OPT_COMPRESSION_LEVEL, Redis::COMPRESSION_ZSTD_MAX); $store->lock('foo')->forceRelease(); $this->assertNull($store->lockConnection()->get($store->getPrefix().'foo')); diff --git a/tests/Redis/RedisConnectionTest.php b/tests/Redis/RedisConnectionTest.php index a89ebd2d4fc4..33e10e9748aa 100644 --- a/tests/Redis/RedisConnectionTest.php +++ b/tests/Redis/RedisConnectionTest.php @@ -899,21 +899,6 @@ public function connections() ], ]))->connection(); - $connections['compression_zstd_min'] = (new RedisManager(new Application, 'phpredis', [ - 'cluster' => false, - 'default' => [ - 'host' => $host, - 'port' => $port, - 'database' => 12, - 'options' => [ - 'compression' => Redis::COMPRESSION_ZSTD, - 'compression_level' => Redis::COMPRESSION_ZSTD_MIN, - 'name' => 'compression_zstd_min', - ], - 'timeout' => 0.5, - ], - ]))->connection(); - $connections['compression_zstd_max'] = (new RedisManager(new Application, 'phpredis', [ 'cluster' => false, 'default' => [