summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2016-06-01 15:01:03 -0700
committerAndre Arko <andre@arko.net>2016-06-01 15:01:03 -0700
commitf7f48c3cd94ce26e096aae6927c43b1c50d2b72b (patch)
treecfe0e82614a5f08d8550e9ec3f8a3c69656eafc9
parent52bee7240beac29d2a1e63f028ca5096c75e64e9 (diff)
downloadbundler-2-0-dev-update.tar.gz
out -> err2-0-dev-update
-rw-r--r--spec/bundler/friendly_errors_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/bundler/friendly_errors_spec.rb b/spec/bundler/friendly_errors_spec.rb
index ae197a4bab..04462aa25a 100644
--- a/spec/bundler/friendly_errors_spec.rb
+++ b/spec/bundler/friendly_errors_spec.rb
@@ -23,10 +23,10 @@ describe Bundler, "friendly errors" do
bundle :install, :env => { "DEBUG" => true }
- expect(out).to include("Your RubyGems configuration")
- expect(out).to include("invalid YAML syntax")
- expect(out).to include("Psych::SyntaxError")
- expect(out).not_to include("ERROR REPORT TEMPLATE")
+ expect(err).to include("Your RubyGems configuration")
+ expect(err).to include("invalid YAML syntax")
+ expect(err).to include("Psych::SyntaxError")
+ expect(err).not_to include("ERROR REPORT TEMPLATE")
expect(exitstatus).to eq(25) if exitstatus
end