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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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