summaryrefslogtreecommitdiffstats
path: root/spec/unit/network/xmlrpc/client.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/network/xmlrpc/client.rb')
-rwxr-xr-xspec/unit/network/xmlrpc/client.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/network/xmlrpc/client.rb b/spec/unit/network/xmlrpc/client.rb
index 36e59429c..328688bae 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")