From ca46a159911e100ced3d4c96a4ee8291b8e0954e Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Thu, 20 Feb 2025 15:54:45 +0900 Subject: [PATCH] [rubygems/rubygems] bin/rubocop -a --only Style/RedundantParentheses https://github.com/rubygems/rubygems/commit/24d4281d86 --- spec/bundler/bundler/shared_helpers_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/bundler/bundler/shared_helpers_spec.rb b/spec/bundler/bundler/shared_helpers_spec.rb index 6db8cd6783..604141bfc5 100644 --- a/spec/bundler/bundler/shared_helpers_spec.rb +++ b/spec/bundler/bundler/shared_helpers_spec.rb @@ -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