Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasalbarello committed Aug 21, 2021
1 parent cbcc9d6 commit 2d5f7c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/services/github_checks_verifier.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def log_checks(checks, msg)
statuses = checks.map(&:status).uniq
statuses.each do |status|
print "Checks #{status}: "
puts checks.select { |check| check.status == status }.each { |check| log_check(check) }.join(", ")
puts checks.select { |check| check.status == status }.map { |check| log_check(check) }.join(", ")
end
end

Expand Down

0 comments on commit 2d5f7c5

Please sign in to comment.