summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaire McQuin <claire@getchef.com>2014-12-08 11:12:27 -0800
committerClaire McQuin <claire@getchef.com>2014-12-08 11:12:27 -0800
commitac166598eb9a96b61e5a997b3a1c267579d174af (patch)
treeaa3e10959399645b1533d1a74a4fed167b48f2e7
parent427a85487e160496c24f91200640789e045ef573 (diff)
downloadchef-ac166598eb9a96b61e5a997b3a1c267579d174af.tar.gz
Update expected debug log output.
-rw-r--r--spec/unit/audit/audit_event_proxy_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/audit/audit_event_proxy_spec.rb b/spec/unit/audit/audit_event_proxy_spec.rb
index bdb3a1dde5..1fddde43f1 100644
--- a/spec/unit/audit/audit_event_proxy_spec.rb
+++ b/spec/unit/audit/audit_event_proxy_spec.rb
@@ -25,7 +25,7 @@ describe Chef::Audit::AuditEventProxy do
it "notifies control_group_started event" do
expect(Chef::Log).to receive(:debug).
- with("Entered controls block named poots")
+ with("Entered \`controls\` block named poots")
expect(events).to receive(:control_group_started).
with(description)
audit_event_proxy.example_group_started(notification)
@@ -57,7 +57,7 @@ describe Chef::Audit::AuditEventProxy do
end
it "sends a message that audits completed" do
- expect(Chef::Log).to receive(:info).with("Successfully executed all controls blocks and contained examples")
+ expect(Chef::Log).to receive(:info).with("Successfully executed all \`controls\` blocks and contained examples")
audit_event_proxy.stop(notification)
end