Skip to content

Commit fd98762

Browse files
committed
skip test below 8.4
1 parent aeb85e6 commit fd98762

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/PHPStan/Rules/Operators/InvalidComparisonOperationRuleTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,10 @@ public function testBug11119(): void
178178

179179
public function testBug13001(): void
180180
{
181+
if (PHP_VERSION_ID < 80400) {
182+
$this->markTestSkipped('Test requires PHP 8.4.');
183+
}
184+
181185
$this->analyse([__DIR__ . '/data/bug-13001.php'], [
182186
[
183187
'Comparison operation ">" between BcMath\\Number and 0.2 results in an error.',

0 commit comments

Comments
 (0)