Skip to content

Commit d0d0b37

Browse files
Update skip condition after PHP 8.4.1 release
1 parent 476c6c8 commit d0d0b37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/end-to-end/event/user-error-php-84.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
The right events are emitted in the right order for a test that runs code which triggers E_USER_ERROR
33
--SKIPIF--
44
<?php declare(strict_types=1);
5-
if (version_compare('8.4.0-dev', PHP_VERSION)) {
5+
if (version_compare('8.4.0', PHP_VERSION, '>')) {
66
print 'skip: PHP 8.4 is required.';
77
}
88
--FILE--

0 commit comments

Comments
 (0)