summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-06-20 18:46:19 -0500
committerSamuel Giddins <segiddins@segiddins.me>2016-06-20 18:46:19 -0500
commit879a404950ea4421d1472f7b45aeccd7d83d19f2 (patch)
treebc72a4713213742062150e75d88f72b37ac11f09
parentdc8c18d02aaa2d29c56126e5b7669aae04e56413 (diff)
downloadbundler-879a404950ea4421d1472f7b45aeccd7d83d19f2.tar.gz
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