[Pkg-puppet-devel] [SCM] Puppet packaging for Debian branch, master, updated. debian/0.24.7-1-98-gf19c0e5

Luke Kanies luke at madstop.com
Wed Apr 8 21:48:14 UTC 2009


The following commit has been merged in the master branch:
commit 1070b3c6e30e75ef554b6ca5ffe24191f999fba1
Author: Luke Kanies <luke at madstop.com>
Date:   Sat Feb 14 09:30:26 2009 -0600

    Fixing a test broken by a log demotion
    
    Signed-off-by: Luke Kanies <luke at madstop.com>

diff --git a/spec/unit/network/xmlrpc/client.rb b/spec/unit/network/xmlrpc/client.rb
index 36e5942..328688b 100755
--- a/spec/unit/network/xmlrpc/client.rb
+++ b/spec/unit/network/xmlrpc/client.rb
@@ -109,7 +109,7 @@ describe Puppet::Network::XMLRPCClient do
             it "should log, recycle the connection, and retry if Errno::EPIPE is raised" do
                 @client.expects(:call).times(2).raises(Errno::EPIPE).then.returns "eh"
 
-                Puppet.expects(:warning)
+                Puppet.expects(:info)
                 @client.expects(:recycle_connection)
 
                 @client.report("eh")
@@ -118,7 +118,7 @@ describe Puppet::Network::XMLRPCClient do
             it "should log, recycle the connection, and retry if EOFError is raised" do
                 @client.expects(:call).times(2).raises(EOFError).then.returns "eh"
 
-                Puppet.expects(:warning)
+                Puppet.expects(:info)
                 @client.expects(:recycle_connection)
 
                 @client.report("eh")

-- 
Puppet packaging for Debian



More information about the Pkg-puppet-devel mailing list