summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHomu <homu@barosl.com>2016-06-21 08:46:47 +0900
committerHomu <homu@barosl.com>2016-06-21 08:46:47 +0900
commit7332185811d77a51cc228d7e18ccbe4f5e553f3a (patch)
treebc72a4713213742062150e75d88f72b37ac11f09
parentdc8c18d02aaa2d29c56126e5b7669aae04e56413 (diff)
parent879a404950ea4421d1472f7b45aeccd7d83d19f2 (diff)
downloadbundler-7332185811d77a51cc228d7e18ccbe4f5e553f3a.tar.gz
Auto merge of #4692 - bundler:seg-fix-trampoline-specs, r=segiddins
Fix hardcoded bundler version string in trampoline specs
-rw-r--r--spec/other/trampoline_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/other/trampoline_spec.rb b/spec/other/trampoline_spec.rb
index 640c608508..0d4fe03f12 100644
--- a/spec/other/trampoline_spec.rb
+++ b/spec/other/trampoline_spec.rb
@@ -84,7 +84,7 @@ describe "bundler version trampolining" do
bundle "--version", :expect_err => true
expect(err).to start_with(<<-E.strip)
Installing the inferred bundler version (= 9999) failed.
-If you'd like to update to the current bundler version (1.12.5) in this project, run `bundle update --bundler`.
+If you'd like to update to the current bundler version (#{Bundler::VERSION}) in this project, run `bundle update --bundler`.
The error was:
E
end