summaryrefslogtreecommitdiff
path: root/spec/bundler/ui
diff options
context:
space:
mode:
authorColby Swandale <colby@taplaboratories.com>2017-05-17 07:58:19 +1000
committerColby Swandale <colby@taplaboratories.com>2017-05-17 07:58:19 +1000
commit0be134195bcb1b79b598def4333e36d7eac9b35e (patch)
treed4b5e84c4436b96d5c0aadd8d524323ae2e2b883 /spec/bundler/ui
parent7a47ace072df309b7fd8020bce1ef56548ba2cce (diff)
downloadbundler-0be134195bcb1b79b598def4333e36d7eac9b35e.tar.gz
stderr feature flag is notw error_on_stderr
Diffstat (limited to 'spec/bundler/ui')
-rw-r--r--spec/bundler/ui/shell_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/bundler/ui/shell_spec.rb b/spec/bundler/ui/shell_spec.rb
index 022fa22a9c..b33cddab86 100644
--- a/spec/bundler/ui/shell_spec.rb
+++ b/spec/bundler/ui/shell_spec.rb
@@ -40,7 +40,7 @@ RSpec.describe Bundler::UI::Shell do
end
context "when stderr flag is enabled" do
- before { bundle "config stderr true" }
+ before { bundle "config error_on_stderr true" }
it "prints to stderr" do
expect { subject.error("error!!!") }.to output("\e[31merror!!!\e[0m").to_stderr
end