diff options
| author | Matt Robinson <matt@puppetlabs.com> | 2010-12-02 11:07:03 -0800 |
|---|---|---|
| committer | Matt Robinson <matt@puppetlabs.com> | 2010-12-02 11:07:03 -0800 |
| commit | b67f4c68503ca3abf0a55857da452e46fa75abd5 (patch) | |
| tree | aca3dc4385e5b14983fc99eeac35eb9890c44e77 | |
| parent | ab7de670a13eff599b6b725513fcb8a67e12136b (diff) | |
| download | puppet-b67f4c68503ca3abf0a55857da452e46fa75abd5.tar.gz puppet-b67f4c68503ca3abf0a55857da452e46fa75abd5.tar.xz puppet-b67f4c68503ca3abf0a55857da452e46fa75abd5.zip | |
maint: Restore a default value that can cause order dependent test failures
If you ran two tests in the following order:
spec spec/integration/network/server/webrick_spec.rb spec/unit/ssl/certificate_request_spec.rb
You got the following test failure:
Cannot save me; parent directory /dev/null/ssl/certificate_requests does not exist
Paired-with: Paul Berry
| -rwxr-xr-x | spec/integration/network/server/webrick_spec.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/integration/network/server/webrick_spec.rb b/spec/integration/network/server/webrick_spec.rb index 37a6bd5c5..963e27940 100755 --- a/spec/integration/network/server/webrick_spec.rb +++ b/spec/integration/network/server/webrick_spec.rb @@ -32,6 +32,7 @@ describe Puppet::Network::Server do system("rm -rf #{@dir}") + Puppet::SSL::Host.ca_location = :none Puppet::Util::Cacher.expire end |
