summaryrefslogtreecommitdiff
path: root/spec/unit/loader_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/loader_spec.rb')
-rw-r--r--spec/unit/loader_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/loader_spec.rb b/spec/unit/loader_spec.rb
index 300407dc..59462c0c 100644
--- a/spec/unit/loader_spec.rb
+++ b/spec/unit/loader_spec.rb
@@ -222,7 +222,7 @@ EOF
describe "when plugin directory does not exist" do
it "logs an invalid plugin path warning" do
- expect(Ohai::Log).to receive(:warn).with(/The plugin path.*does not exist/)
+ expect(Ohai::Log).to receive(:info).with(/The plugin path.*does not exist/)
allow(Dir).to receive(:exist?).with("/bogus/dir").and_return(false)
Ohai::Loader::PluginFile.find_all_in("/bogus/dir")
end