summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-09-10 15:47:45 -0700
committerTim Smith <tsmith84@gmail.com>2020-09-10 15:47:45 -0700
commit715e7f93e620fdb3fd020c98a4cef74e30501d5c (patch)
tree8f921209bcc7a13446ce760ca1da941577bf280c
parent483240891921d72f172067d15a50a97d52761c4b (diff)
downloadohai-fix_specs.tar.gz
Fix spec stub for the latest mixlib-shelloutfix_specs
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 <tsmith@chef.io>
-rw-r--r--spec/unit/mixin/shell_out_spec.rb2
1 files changed, 1 insertions, 1 deletions
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