summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2024-11-18 14:17:50 +0100
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2024-11-26 15:11:05 +0900
commit91995d0ad13c56dffd57c18fcc0b4bafdc95c24d (patch)
treecc3c5e52d7809bc2c73d2c9ea8063432c054c808
parentd63eeafe690712bde051983f766de1008133f054 (diff)
[rubygems/rubygems] Remove unnecessary `verbose` parameter
For consistency with other specs. https://github.com/rubygems/rubygems/commit/a5b2449896
-rw-r--r--spec/bundler/install/yanked_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/bundler/install/yanked_spec.rb b/spec/bundler/install/yanked_spec.rb
index ef9eae57fc..a7b5fc73b3 100644
--- a/spec/bundler/install/yanked_spec.rb
+++ b/spec/bundler/install/yanked_spec.rb
@@ -77,7 +77,7 @@ RSpec.context "when installing a bundle that includes yanked gems" do
end
it "reports the yanked gem properly when the old index is used" do
- bundle "install", artifice: "endpoint", raise_on_error: false, verbose: true
+ bundle "install", artifice: "endpoint", raise_on_error: false
expect(err).to include("Your bundle is locked to nokogiri (1.13.8-#{Bundler.local_platform})")
end