summaryrefslogtreecommitdiff
path: root/spec/unit/mixin/shell_out_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/mixin/shell_out_spec.rb')
-rw-r--r--spec/unit/mixin/shell_out_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/mixin/shell_out_spec.rb b/spec/unit/mixin/shell_out_spec.rb
index 7d08d9ff..d696546e 100644
--- a/spec/unit/mixin/shell_out_spec.rb
+++ b/spec/unit/mixin/shell_out_spec.rb
@@ -63,14 +63,14 @@ describe Ohai::Mixin::ShellOut, "shell_out" do
let(:instance) { DummyPlugin.new }
- before do
+ before(:each) do
allow(instance).to receive(:logger).and_return(logger)
allow(instance).to receive(:name).and_return(plugin_name)
@original_env = ENV.to_hash
ENV.clear
end
- after do
+ after(:each) do
ENV.clear
ENV.update(@original_env)
end