Skip to content

Commit

Permalink
Skip PsalmTest also on older versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kelunik committed Mar 21, 2024
1 parent 5e8f88b commit 0e45c84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/PsalmTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class PsalmTest extends TestCase
*/
public function test()
{
if (\DIRECTORY_SEPARATOR === '\\' || \PHP_VERSION_ID >= 80100) {
if (\DIRECTORY_SEPARATOR === '\\' || \PHP_VERSION_ID < 80000 || \PHP_VERSION_ID >= 80100) {
self::markTestSkipped('Skipped on Windows');
}

Expand Down

0 comments on commit 0e45c84

Please sign in to comment.