summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2019-04-02 10:46:45 +0000
committerBundlerbot <bot@bundler.io>2019-04-02 10:46:45 +0000
commit1869628a250ffa45836fbdf5e3e8661f0560c43e (patch)
treea5636826d47e38d277bd68f2dc04f733853eb9eb
parent4cae424d604cbeb8ee84127a6b8896c45e7e2c84 (diff)
parentbfcb3997d54868074f85a7e9e07f3596f8ac1f44 (diff)
downloadbundler-1869628a250ffa45836fbdf5e3e8661f0560c43e.tar.gz
Merge #7091
7091: Change info command spec to use `bundle info` instead of `bundle show` r=colby-swandale a=colby-swandale ### What was the end-user problem that led to this PR? A test in the info command spec was using `bundle show` instead of `bundle info`. This is causing specs in Bundler 3 to fail. See https://travis-ci.org/bundler/bundler/jobs/514507744 ### What is your fix for the problem, implemented in this PR? Change the test to use `bundle info` instead. Co-authored-by: Colby Swandale <me@colby.fyi>
-rw-r--r--spec/commands/info_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/commands/info_spec.rb b/spec/commands/info_spec.rb
index 3c511cfc61..fc1d97b1da 100644
--- a/spec/commands/info_spec.rb
+++ b/spec/commands/info_spec.rb
@@ -138,7 +138,7 @@ RSpec.describe "bundle info" do
invalid_regexp = "[]"
- bundle "show #{invalid_regexp}"
+ bundle "info #{invalid_regexp}"
expect(err).to include("Could not find gem '#{invalid_regexp}'.")
end
end