summaryrefslogtreecommitdiff
path: root/spec/functional/application_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/functional/application_spec.rb')
-rw-r--r--spec/functional/application_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/functional/application_spec.rb b/spec/functional/application_spec.rb
index 297f1c3797..a1d69a9e8f 100644
--- a/spec/functional/application_spec.rb
+++ b/spec/functional/application_spec.rb
@@ -47,9 +47,9 @@ describe Chef::Application do
it "saves built proxy to ENV which shell_out can use" do
so = if windows?
- shell_out("echo $env:http_proxy")
+ shell_out("echo %HTTP_PROXY%")
else
- shell_out("echo $http_proxy")
+ shell_out("echo %HTTP_PROXY%")
end
so.stdout.should == "http://proxy.example.org:8080\n"