Skip to content

Commit

Permalink
Fix PHP_VERSION_ID comparison in test
Browse files Browse the repository at this point in the history
  • Loading branch information
staabm authored and ondrejmirtes committed Jul 20, 2024
1 parent 27e0f91 commit 28dff17
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ public function testBug8068(): void

public function testBug6243(): void
{
if (PHP_VERSION_ID < 704000) {
if (PHP_VERSION_ID < 70400) {
$this->markTestSkipped('Test requires PHP 7.4.');
}

Expand Down

0 comments on commit 28dff17

Please sign in to comment.