Skip to content

Commit f509b75

Browse files
committed
[12.x] unskip tests
1 parent 8dd375a commit f509b75

File tree

2 files changed

+0
-16
lines changed

2 files changed

+0
-16
lines changed

tests/Integration/Cache/MemoizedStoreTest.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313
use Illuminate\Cache\Events\WritingKey;
1414
use Illuminate\Contracts\Cache\Store;
1515
use Illuminate\Foundation\Testing\Concerns\InteractsWithRedis;
16-
use Illuminate\Redis\Connections\PhpRedisClusterConnection;
17-
use Illuminate\Redis\Connections\PredisClusterConnection;
1816
use Illuminate\Support\Facades\Cache;
1917
use Illuminate\Support\Facades\Config;
2018
use Illuminate\Support\Facades\Event;
@@ -33,12 +31,6 @@ protected function setUp(): void
3331

3432
$this->setUpRedis();
3533

36-
$connection = $this->app['redis']->connection();
37-
$this->markTestSkippedWhen(
38-
$connection instanceof PhpRedisClusterConnection || $connection instanceof PredisClusterConnection,
39-
'flushAll and many currently not supported for Redis Cluster connections',
40-
);
41-
4234
Config::set('cache.default', 'redis');
4335
Redis::flushAll();
4436
}

tests/Integration/Cache/RedisStoreTest.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66
use Illuminate\Cache\RedisStore;
77
use Illuminate\Foundation\Testing\Concerns\InteractsWithRedis;
88
use Illuminate\Redis\Connections\PhpRedisClusterConnection;
9-
use Illuminate\Redis\Connections\PredisClusterConnection;
109
use Illuminate\Support\Facades\Cache;
11-
use Illuminate\Support\Facades\Redis;
1210
use Illuminate\Support\Sleep;
1311
use Mockery as m;
1412
use Orchestra\Testbench\TestCase;
@@ -23,12 +21,6 @@ protected function setUp(): void
2321
{
2422
$this->afterApplicationCreated(function () {
2523
$this->setUpRedis();
26-
27-
$connection = $this->app['redis']->connection();
28-
$this->markTestSkippedWhen(
29-
$connection instanceof PhpRedisClusterConnection || $connection instanceof PredisClusterConnection,
30-
'RedisStore currently does not support tags, many and some other on Redis Cluster cluster connections',
31-
);
3224
});
3325

3426
$this->beforeApplicationDestroyed(function () {

0 commit comments

Comments
 (0)