Skip to content

Commit

Permalink
fix: TurboTests::Runner fail_fast condition
Browse files Browse the repository at this point in the history
Ported from Discourse:
discourse/discourse#19540
  • Loading branch information
ilyazub committed Jan 20, 2023
1 parent fb33eb4 commit 37e19db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/turbo_tests/runner.rb
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def handle_messages
end

def fail_fast_met
!@fail_fast.nil? && @fail_fast >= @failure_count
!@fail_fast.nil? && @failure_count >= @fail_fast
end

def report_number_of_tests(groups)
Expand Down

0 comments on commit 37e19db

Please sign in to comment.