From 924344e4ecc1a3810ea9babc95f3e2d5fda5c11e Mon Sep 17 00:00:00 2001 From: Eirik Stanghelle Morland Date: Wed, 18 Sep 2024 21:08:02 +0200 Subject: [PATCH] Update PackageToCheckTest.php --- tests/Integration/PackageToCheckTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Integration/PackageToCheckTest.php b/tests/Integration/PackageToCheckTest.php index cdeeaa0..c042233 100644 --- a/tests/Integration/PackageToCheckTest.php +++ b/tests/Integration/PackageToCheckTest.php @@ -15,7 +15,7 @@ protected function createUpdater($directory) if (version_compare(phpversion(), "7.3.0", "<")) { self::expectException(ComposerUpdateProcessFailedException::class); } - if (version_compare(phpversion(), "8.4.0", ">=")) { + if (version_compare(phpversion(), "8.3.99", ">=")) { self::expectException(ComposerUpdateProcessFailedException::class); } $updater = new Updater($directory, 'drupal/recaptcha');