summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Wrock <matt@mattwrock.com>2016-04-25 18:07:29 -0700
committerMatt Wrock <matt@mattwrock.com>2016-04-25 18:07:29 -0700
commit03e2bbc52ea84b2f01019bf19e3c8f04e66f684f (patch)
tree6026f775ed654a714095497c67295da257dd04a1
parentacf2d31ef5a564a8c543f8fcf96b95b4a546e2d8 (diff)
downloadchef-03e2bbc52ea84b2f01019bf19e3c8f04e66f684f.tar.gz
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