Skip to content

Commit 743850d

Browse files
committed
Fix
1 parent 79e19d9 commit 743850d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/PHPStan/Rules/Comparison/NumberComparisonOperatorsConstantConditionRuleTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public function testBug5295(): void
103103

104104
public function testBug7052(): void
105105
{
106-
if (PHP_VERSION_ID < 80100 && !self::$useStaticReflectionProvider) {
106+
if (PHP_VERSION_ID < 80100) {
107107
$this->markTestSkipped('Test requires PHP 8.1.');
108108
}
109109
$this->analyse([__DIR__ . '/data/bug-7052.php'], [

0 commit comments

Comments
 (0)