summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Wrock <matt@mattwrock.com>2016-04-25 19:00:37 -0700
committerMatt Wrock <matt@mattwrock.com>2016-04-25 19:00:37 -0700
commit8f7404b4acd2e60cce9fd8c2b6a698af4c823f7c (patch)
tree323f95928053c9378412e844724f462e3ca546c2
parentae1df3f0df293ca1e15cfa1304143b165d933a05 (diff)
parent03e2bbc52ea84b2f01019bf19e3c8f04e66f684f (diff)
downloadchef-8f7404b4acd2e60cce9fd8c2b6a698af4c823f7c.tar.gz
Merge pull request #4866 from chef/fix_acceptance
fix fips acceptance failures
-rw-r--r--spec/unit/application/apply_spec.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/unit/application/apply_spec.rb b/spec/unit/application/apply_spec.rb
index d7298d07fa..d223d55d2b 100644
--- a/spec/unit/application/apply_spec.rb
+++ b/spec/unit/application/apply_spec.rb
@@ -22,6 +22,7 @@ describe Chef::Application::Apply do
before do
@app = Chef::Application::Apply.new
allow(@app).to receive(:configure_logging).and_return(true)
+ allow(Chef::Log).to receive(:debug).with("FIPS mode is enabled.")
@recipe_text = "package 'nyancat'"
Chef::Config[:solo] = true
end