From 8e2d971b9ac7b6f0642b0ab83e4a363f8a0c7183 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Fri, 13 Sep 2024 12:42:11 +0200 Subject: [PATCH] [rubygems/rubygems] Remove redundant arguments passed to `bundle` helper They are used by default. https://github.com/rubygems/rubygems/commit/0b7f7d879f --- spec/bundler/commands/update_spec.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spec/bundler/commands/update_spec.rb b/spec/bundler/commands/update_spec.rb index cc1e01ba0b..e87fecaa6d 100644 --- a/spec/bundler/commands/update_spec.rb +++ b/spec/bundler/commands/update_spec.rb @@ -1535,7 +1535,7 @@ RSpec.describe "bundle update --bundler" do bundle :cache, verbose: true - bundle :update, bundler: true, artifice: "compact_index", verbose: true, env: { "BUNDLER_SPEC_GEM_REPO" => gem_repo4.to_s } + bundle :update, bundler: true, verbose: true expect(out).not_to include("Updating bundler to") end @@ -1561,7 +1561,7 @@ RSpec.describe "bundle update --bundler" do gem "myrack" G - bundle :update, bundler: true, artifice: "compact_index", verbose: true, env: { "BUNDLER_SPEC_GEM_REPO" => gem_repo4.to_s } + bundle :update, bundler: true, verbose: true expect(out).to include("Using bundler 9.9.9") @@ -1597,7 +1597,7 @@ RSpec.describe "bundle update --bundler" do gem "myrack" G - bundle :update, bundler: "999.999.999", artifice: "compact_index", raise_on_error: false + bundle :update, bundler: "999.999.999", raise_on_error: false # Only gives a meaningful error message on modern RubyGems.