summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rw-r--r--spec/unit/log_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/log_spec.rb b/spec/unit/log_spec.rb
index 756e5b43e0..931d0adf11 100644
--- a/spec/unit/log_spec.rb
+++ b/spec/unit/log_spec.rb
@@ -27,12 +27,12 @@ describe Chef::Log::Syslog do
let(:logger) { Chef::Log::Syslog.new }
it "should send message with severity info to syslog." do
- expect_any_instance_of(Logger::Syslog).to receive(:info).with(" *** Chef 12.4.0.dev.0 ***")
+ expect_any_instance_of(Logger::Syslog).to receive(:info).with("*** Chef 12.4.0.dev.0 ***")
logger.write("[2015-04-23T15:16:23+09:00] INFO: *** Chef 12.4.0.dev.0 ***")
end
it "should send message with severity warning to syslog." do
- expect_any_instance_of(Logger::Syslog).to receive(:warn).with(" No config file found or specified on command line, using command line options.")
+ expect_any_instance_of(Logger::Syslog).to receive(:warn).with("No config file found or specified on command line, using command line options.")
logger.write("[2015-04-23T15:16:20+09:00] WARN: No config file found or specified on command line, using command line options.")
end