summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThe Bundler Bot <bot@bundler.io>2017-07-18 01:23:44 +0000
committerThe Bundler Bot <bot@bundler.io>2017-07-18 01:23:44 +0000
commit466568eb90cf546d108ee3dde5187ce9a470364e (patch)
tree9937d6e1c71012c5c13277cedb9626e3aadc2858
parent85dae2d0617ee81f6a6c5fa4ae1e7b3c02eff327 (diff)
parent108b0329c22c2c552362e676922d9f76637400ed (diff)
downloadbundler-466568eb90cf546d108ee3dde5187ce9a470364e.tar.gz
Auto merge of #5870 - bundler:seg-fix-specs, r=segiddins
Fix spec on 2.0 broken with the v1.15.2 merge ### What was the end-user problem that led to this PR? The problem was I merged in a change necessary to keep the 1.15.x specs passing accidentally, even though it broke the 2.0 spec. Oops.
-rw-r--r--spec/bundler/cli_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/bundler/cli_spec.rb b/spec/bundler/cli_spec.rb
index 8014f72d11..2ef2eb3412 100644
--- a/spec/bundler/cli_spec.rb
+++ b/spec/bundler/cli_spec.rb
@@ -68,7 +68,7 @@ RSpec.describe "bundle executable" do
it "doesn't print defaults" do
install_gemfile! "", :verbose => true
- expect(out).to start_with("Running `bundle install --no-color --retry 0 --verbose` with bundler #{Bundler::VERSION}")
+ expect(last_command.stdout).to start_with("Running `bundle install --no-color --retry 0 --verbose` with bundler #{Bundler::VERSION}")
end
end