[rubygems/rubygems] bin/rubocop -a --only Style/RedundantParentheses

https://github.com/rubygems/rubygems/commit/24d4281d86
This commit is contained in:
Hiroshi SHIBATA 2025-02-20 15:54:45 +09:00
parent 425cfcff85
commit ca46a15991

View File

@ -354,7 +354,7 @@ RSpec.describe Bundler::SharedHelpers do
it "ENV['PATH'] should only contain one instance of bundle bin path" do
subject.set_bundle_environment
paths = (ENV["PATH"]).split(File::PATH_SEPARATOR)
paths = ENV["PATH"].split(File::PATH_SEPARATOR)
expect(paths.count(bundle_path)).to eq(1)
end
end