diff options
| author | Matt Robinson <matt@puppetlabs.com> | 2010-07-07 10:30:15 -0700 |
|---|---|---|
| committer | Nick Lewis <nick@puppetlabs.com> | 2010-07-07 11:51:54 -0700 |
| commit | cdd43825cee233af478d807cddda346e9d1fe142 (patch) | |
| tree | 51f56c551f8364efa3053e404f04db568fa69943 /test/lib | |
| parent | e419293e58addfd8e4f0612ad121f68038daa14a (diff) | |
| download | puppet-cdd43825cee233af478d807cddda346e9d1fe142.tar.gz puppet-cdd43825cee233af478d807cddda346e9d1fe142.tar.xz puppet-cdd43825cee233af478d807cddda346e9d1fe142.zip | |
[#4114] Fix failures in the unit tests
The initial commit changed the name of a method (close -> close_all) and
changed the way the array log destination worked before we saw that the
unit tests were using it differently.
Diffstat (limited to 'test/lib')
| -rwxr-xr-x | test/lib/puppettest.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/puppettest.rb b/test/lib/puppettest.rb index 32f57f394..f94fb4cec 100755 --- a/test/lib/puppettest.rb +++ b/test/lib/puppettest.rb @@ -319,7 +319,7 @@ module PuppetTest end # reset all of the logs - Puppet::Util::Log.close + Puppet::Util::Log.close_all @logs.clear # Just in case there are processes waiting to die... |
