DEV: Fix TurboTests::Runner fail_fast condition (#19540)

It fast-failed after the first failure regardless of the param…
This commit is contained in:
Jarek Radosz
2022-12-21 02:33:52 +01:00
committed by GitHub
parent e775ed1c36
commit dc13e8ecfd

View File

@@ -262,7 +262,7 @@ module TurboTests
end
def fail_fast_met
!@fail_fast.nil? && @fail_fast >= @failure_count
!@fail_fast.nil? && @failure_count >= @fail_fast
end
end
end