Skip to content

Commit

Permalink
Fix Rubocop Style/FetchEnvVar
Browse files Browse the repository at this point in the history
  • Loading branch information
ms-ati committed Apr 23, 2022
1 parent e91f2a0 commit 75b66be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ group :test do
gem "simplecov", require: false

# CI-only test dependencies go here
if ENV["CI"] == "true"
if ENV.fetch("CI", nil) == "true"
gem "simplecov-cobertura", require: false, group: "test"
end
end
Expand Down

0 comments on commit 75b66be

Please sign in to comment.