Skip to content

Commit

Permalink
chore: add missing comparator
Browse files Browse the repository at this point in the history
  • Loading branch information
luislard committed Dec 14, 2023
1 parent 9ca121d commit 8e3dba0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/LogActionUpdaterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,6 @@ public function testUpdateLogsUsingPsrLoggerWithMaskedInput(): void

private function buildLogger()
{
return version_compare(phpversion(), '8.0') ? new TestLoggerV2V3() : new TestLoggerV1();
return version_compare(phpversion(), '8.0', '>=') ? new TestLoggerV2V3() : new TestLoggerV1();
}
}

0 comments on commit 8e3dba0

Please sign in to comment.