From f3d64d92f177d7d61e772154e74319080c5a31b9 Mon Sep 17 00:00:00 2001 From: Eirik Stanghelle Morland Date: Wed, 18 Sep 2024 21:00:50 +0200 Subject: [PATCH] Update RequireTest.php --- tests/Integration/RequireTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Integration/RequireTest.php b/tests/Integration/RequireTest.php index d73360d..990fb35 100644 --- a/tests/Integration/RequireTest.php +++ b/tests/Integration/RequireTest.php @@ -16,7 +16,7 @@ public function testEndToEnd() if (version_compare(phpversion(), "8.0.0", "<")) { $this->expectException(NotUpdatedException::class); } - if (version_compare(phpversion(), "8.3.0", ">=")) { + if (version_compare(phpversion(), "8.4.0", ">=")) { self::expectException(NotUpdatedException::class); } parent::testEndToEnd();