summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHomu <homu@barosl.com>2016-06-21 08:46:47 +0900
committerSamuel Giddins <segiddins@segiddins.me>2016-06-27 16:17:39 -0500
commita09350bd970a6e838b3115d39fa86fba6a494c0c (patch)
treea31fb875eb74c5864b63388739f5a2b3415fb75d
parentd89689a02b18310ede25de4749fbe2fb71fcabd8 (diff)
downloadbundler-a09350bd970a6e838b3115d39fa86fba6a494c0c.tar.gz
Auto merge of #4692 - bundler:seg-fix-trampoline-specs, r=segiddins
Fix hardcoded bundler version string in trampoline specs (cherry picked from commit 7332185811d77a51cc228d7e18ccbe4f5e553f3a)
-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