DEV: Fix TurboTests::Runner fail_fast condition (#19540)
It fast-failed after the first failure regardless of the param…
This commit is contained in:
parent
e775ed1c36
commit
dc13e8ecfd
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue