summaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2009-11-01 14:58:03 -0500
committertest branch <puppet-dev@googlegroups.com>2010-02-17 06:50:53 -0800
commit2aa579bdbd91db2cd9a154e0ead2b327fa9a8474 (patch)
tree5023f02f76af357271d00c0a54a3fd02238abe49 /spec
parent5a8b460001337ac2971c9b8b9b61f600a86890bf (diff)
downloadpuppet-2aa579bdbd91db2cd9a154e0ead2b327fa9a8474.tar.gz
puppet-2aa579bdbd91db2cd9a154e0ead2b327fa9a8474.tar.xz
puppet-2aa579bdbd91db2cd9a154e0ead2b327fa9a8474.zip
Removing a redundant method in Report
Signed-off-by: Luke Kanies <luke@madstop.com>
Diffstat (limited to 'spec')
-rwxr-xr-xspec/unit/util/log/destinations.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/util/log/destinations.rb b/spec/unit/util/log/destinations.rb
index 0bc416e74..b43c75730 100755
--- a/spec/unit/util/log/destinations.rb
+++ b/spec/unit/util/log/destinations.rb
@@ -17,7 +17,7 @@ describe Puppet::Util::Log.desttypes[:report] do
report = mock 'report'
dest = @dest.new(report)
- report.expects(:newlog).with("my log")
+ report.expects(:<<).with("my log")
dest.handle "my log"
end