summaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorJesse Wolfe <jes5199@gmail.com>2010-08-04 13:59:10 -0700
committerMarkus Roberts <Markus@reality.com>2010-08-04 17:50:03 -0700
commit0e4bc62716a37cc82a8a5dbb5865ac7f45cf71b2 (patch)
tree68c3d7d2d08dce7eb81131b60d698b6bc4de953f /spec
parent3a6ca54a6e8ad353f207bc85433d1204b5ca48bc (diff)
downloadpuppet-0e4bc62716a37cc82a8a5dbb5865ac7f45cf71b2.tar.gz
puppet-0e4bc62716a37cc82a8a5dbb5865ac7f45cf71b2.tar.xz
puppet-0e4bc62716a37cc82a8a5dbb5865ac7f45cf71b2.zip
[#4364] Fix failing spec due to incorrect loglevel
A spec was failing since it wasn't updated when the #4364 change was made.
Diffstat (limited to 'spec')
-rwxr-xr-xspec/unit/transaction/resource_harness_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/transaction/resource_harness_spec.rb b/spec/unit/transaction/resource_harness_spec.rb
index 31965c92c..255481ae4 100755
--- a/spec/unit/transaction/resource_harness_spec.rb
+++ b/spec/unit/transaction/resource_harness_spec.rb
@@ -50,7 +50,7 @@ describe Puppet::Transaction::ResourceHarness do
end
it "should cache and log the current value if no cached values are present" do
- @resource.expects(:info)
+ @resource.expects(:debug)
@harness.copy_audited_parameters(@resource, {:mode => "755"}).should == []
@harness.cached(@resource, :mode).should == "755"