You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by do...@apache.org on 2013/06/09 05:13:25 UTC

svn commit: r1491130 - /buildr/trunk/spec/core/common_spec.rb

Author: donaldp
Date: Sun Jun  9 03:13:25 2013
New Revision: 1491130

URL: http://svn.apache.org/r1491130
Log:
Clear proxy options at start of test

Modified:
    buildr/trunk/spec/core/common_spec.rb

Modified: buildr/trunk/spec/core/common_spec.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/spec/core/common_spec.rb?rev=1491130&r1=1491129&r2=1491130&view=diff
==============================================================================
--- buildr/trunk/spec/core/common_spec.rb (original)
+++ buildr/trunk/spec/core/common_spec.rb Sun Jun  9 03:13:25 2013
@@ -595,6 +595,7 @@ end
 describe Buildr::Options, 'proxy.exclude' do
   before do
     options.proxy.http = 'http://myproxy:8080'
+    options.proxy.exclude.clear
     @domain = 'domain'
     @host = "host.#{@domain}"
     @uri = URI("http://#{@host}")