From ead3dea8d3439ffa7597caa128e70e090b6185f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frederic=20G=2E=20=C3=98stby?= Date: Sat, 3 Jun 2023 22:06:00 +0200 Subject: [PATCH 1/2] Update RedisTest.php --- tests/integration/redis/RedisTest.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/integration/redis/RedisTest.php b/tests/integration/redis/RedisTest.php index 62afee4f1..faf9db253 100644 --- a/tests/integration/redis/RedisTest.php +++ b/tests/integration/redis/RedisTest.php @@ -34,11 +34,6 @@ class RedisTest extends TestCase */ public function setUp(): void { - if(PHP_VERSION_ID >= 80300) - { - $this->markTestSkipped('Skipping since the tests currently fail on the PHP 8.3 preview.'); - } - try { $this->redis = new Redis(new Connection('localhost', 6379)); From a32066a99aff9b651b80463099eefc25d73b004f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frederic=20G=2E=20=C3=98stby?= Date: Sat, 3 Jun 2023 22:15:23 +0200 Subject: [PATCH 2/2] Revert "Update RedisTest.php" This reverts commit ead3dea8d3439ffa7597caa128e70e090b6185f2. --- tests/integration/redis/RedisTest.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/integration/redis/RedisTest.php b/tests/integration/redis/RedisTest.php index faf9db253..62afee4f1 100644 --- a/tests/integration/redis/RedisTest.php +++ b/tests/integration/redis/RedisTest.php @@ -34,6 +34,11 @@ class RedisTest extends TestCase */ public function setUp(): void { + if(PHP_VERSION_ID >= 80300) + { + $this->markTestSkipped('Skipping since the tests currently fail on the PHP 8.3 preview.'); + } + try { $this->redis = new Redis(new Connection('localhost', 6379));