summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2017-08-19 11:52:09 -0400
committerSamuel Giddins <segiddins@segiddins.me>2017-08-19 11:52:54 -0400
commitad6cbddb497ba7890cf4896c8f155e6fef77bf8b (patch)
tree9938f091c808645dfcc5468e1e184fe2639f0e23
parent70be39c679e4218e3e0c94fa2f5c785ef5575832 (diff)
downloadbundler-ad6cbddb497ba7890cf4896c8f155e6fef77bf8b.tar.gz
Fix spec error from bad merge
-rw-r--r--spec/bundler/cli_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/bundler/cli_spec.rb b/spec/bundler/cli_spec.rb
index 536face347..07ae92719c 100644
--- a/spec/bundler/cli_spec.rb
+++ b/spec/bundler/cli_spec.rb
@@ -120,10 +120,10 @@ Could not find command "fail".
context "running a parseable command" do
it "prints no warning" do
bundle! "config --parseable foo"
- expect(last_command.stdboth).to eq ""
+ expect(out).to eq ""
bundle "platform --ruby"
- expect(last_command.stdboth).to eq "Could not locate Gemfile"
+ expect(out).to eq "Could not locate Gemfile"
end
end