From 2aa579bdbd91db2cd9a154e0ead2b327fa9a8474 Mon Sep 17 00:00:00 2001 From: Luke Kanies Date: Sun, 1 Nov 2009 14:58:03 -0500 Subject: Removing a redundant method in Report Signed-off-by: Luke Kanies --- spec/unit/util/log/destinations.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'spec/unit') 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 -- cgit