summaryrefslogtreecommitdiffstats
path: root/spec/unit
diff options
context:
space:
mode:
authorMarkus Roberts <Markus@reality.com>2010-07-09 17:12:58 -0700
committerMarkus Roberts <Markus@reality.com>2010-07-09 17:26:27 -0700
commit700970475c01f60490f6d05e7a94275ede704c37 (patch)
tree7c6bebd6219a4bbdb8e20ce493be5057499bfa17 /spec/unit
parent9cf9788fbbe1bd9d7d49be100d4f29b0f9908cf4 (diff)
downloadpuppet-700970475c01f60490f6d05e7a94275ede704c37.tar.gz
puppet-700970475c01f60490f6d05e7a94275ede704c37.tar.xz
puppet-700970475c01f60490f6d05e7a94275ede704c37.zip
Fix for #4117 "Storing newly-audited value" messages
They're semantically info, not notifications, and now are handled as such.
Diffstat (limited to 'spec/unit')
-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 cbb796cde..953b509ab 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(:notice)
+ @resource.expects(:info)
@harness.copy_audited_parameters(@resource, {:mode => "755"}).should == []
@harness.cached(@resource, :mode).should == "755"