From 715e7f93e620fdb3fd020c98a4cef74e30501d5c Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Thu, 10 Sep 2020 15:47:45 -0700 Subject: Fix spec stub for the latest mixlib-shellout No impact to users here, but the new mixlib-shellout changed the log level of streaming from debug to trace so we need to update this stub. Signed-off-by: Tim Smith --- spec/unit/mixin/shell_out_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/unit/mixin/shell_out_spec.rb b/spec/unit/mixin/shell_out_spec.rb index e7e194c7..35873e04 100644 --- a/spec/unit/mixin/shell_out_spec.rb +++ b/spec/unit/mixin/shell_out_spec.rb @@ -51,7 +51,7 @@ describe Ohai::Mixin::ShellOut, "shell_out" do } end - let(:logger) { instance_double("Mixlib::Log::Child", trace: nil, debug: nil, warn: nil, debug?: false) } + let(:logger) { instance_double("Mixlib::Log::Child", trace: nil, debug: nil, warn: nil, trace?: false) } class DummyPlugin include Ohai::Mixin::ShellOut -- cgit v1.2.1