Skip to content

Commit 91ea040

Browse files
committed
fix
1 parent be417a3 commit 91ea040

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Unit/Helpers/DefinitionExtractorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ public function testFromClassWithSelfDependency(): void
163163

164164
$this->assertInstanceOf(ParameterDefinition::class, $definition);
165165
$this->assertSame(
166-
PHP_VERSION_ID > 80500 ? 'self' : SelfDependency::class,
166+
PHP_VERSION_ID < 80500 ? 'self' : SelfDependency::class,
167167
$definition->getReflection()->getType()->getName(),
168168
);
169169
}

0 commit comments

Comments
 (0)