summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian C. Dunn <jdunn@aquezada.com>2015-03-11 21:08:20 -0400
committerJulian C. Dunn <jdunn@aquezada.com>2015-03-11 21:08:20 -0400
commit4db544319500bf7f0b74687cc1d2c0fd2c55766b (patch)
treebbcc880ce4cb51fdb26a73a738ee137feeed5363
parent1a168a79f5aecc405409ca2a9e293a3a2db5dccb (diff)
downloadchef-4db544319500bf7f0b74687cc1d2c0fd2c55766b.tar.gz
Fix test
-rw-r--r--spec/unit/audit/audit_reporter_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/audit/audit_reporter_spec.rb b/spec/unit/audit/audit_reporter_spec.rb
index 84d7ea82f0..4bf889510a 100644
--- a/spec/unit/audit/audit_reporter_spec.rb
+++ b/spec/unit/audit/audit_reporter_spec.rb
@@ -203,7 +203,7 @@ describe Chef::Audit::AuditReporter do
it "doesn't send reports" do
expect(reporter).to receive(:auditing_enabled?).and_return(true)
expect(reporter).to receive(:run_status).and_return(nil)
- expect(Chef::Log).to receive(:debug).with("Run failed before audits were initialized, not sending audit report to server")
+ expect(Chef::Log).to receive(:debug).with("Run failed before audit mode was initialized, not sending audit report to server")
reporter.run_completed(node)
end