diff options
Diffstat (limited to 'spec/functional/http/simple_spec.rb')
-rw-r--r-- | spec/functional/http/simple_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/functional/http/simple_spec.rb b/spec/functional/http/simple_spec.rb index e792cc8d75..fcabd3f308 100644 --- a/spec/functional/http/simple_spec.rb +++ b/spec/functional/http/simple_spec.rb @@ -87,11 +87,11 @@ describe Chef::HTTP::Simple do it_behaves_like "downloading all the things" - context "when Chef::Log.level = :debug" do + context "when Chef::Log.level = :trace" do before do - Chef::Log.level = :debug + Chef::Log.level = :trace @debug_log = "" - allow(Chef::Log).to receive(:debug) { |str| @debug_log << str } + allow(Chef::Log).to receive(:trace) { |str| @debug_log << str } end let(:source) { "http://localhost:9000" } |