summaryrefslogtreecommitdiff
path: root/spec/bundler/commands/exec_spec.rb
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2021-12-14 14:49:43 +0100
committergit <svn-admin@ruby-lang.org>2021-12-17 16:35:17 +0900
commitaf4b4fd19b7972adc165e70e9d41ad7e14c9a235 (patch)
tree9b2b458ae30d7ef637beb8ebf81afc3175326a97 /spec/bundler/commands/exec_spec.rb
parentce6fc20f973e307071533bfd9699da88986c67a3 (diff)
[rubygems/rubygems] Improve resolver error messages
Use a more standard naming for gems. https://github.com/rubygems/rubygems/commit/75121e83f1
Diffstat (limited to 'spec/bundler/commands/exec_spec.rb')
-rw-r--r--spec/bundler/commands/exec_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/bundler/commands/exec_spec.rb b/spec/bundler/commands/exec_spec.rb
index e67e5b96ef..83e8088349 100644
--- a/spec/bundler/commands/exec_spec.rb
+++ b/spec/bundler/commands/exec_spec.rb
@@ -867,7 +867,7 @@ RSpec.describe "bundle exec" do
let(:expected) { "" }
let(:expected_err) { <<-EOS.strip }
Could not find gem 'rack (= 2)' in locally installed gems.
-The source contains the following versions of 'rack': 0.9.1, 1.0.0
+The source contains the following gems matching 'rack': rack-0.9.1, rack-1.0.0
Run `bundle install` to install missing gems.
EOS
@@ -894,7 +894,7 @@ Run `bundle install` to install missing gems.
let(:expected) { "" }
let(:expected_err) { <<-EOS.strip }
Could not find gem 'rack (= 2)' in locally installed gems.
-The source contains the following versions of 'rack': 1.0.0
+The source contains the following gems matching 'rack': rack-1.0.0
Run `bundle install` to install missing gems.
EOS