summaryrefslogtreecommitdiff
path: root/spec/unit/handler/json_file_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/handler/json_file_spec.rb')
-rw-r--r--spec/unit/handler/json_file_spec.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/spec/unit/handler/json_file_spec.rb b/spec/unit/handler/json_file_spec.rb
index fd3438e65e..d8f56b21a9 100644
--- a/spec/unit/handler/json_file_spec.rb
+++ b/spec/unit/handler/json_file_spec.rb
@@ -49,7 +49,6 @@ describe Chef::Handler::JsonFile do
allow(File).to receive(:open).and_yield(@file_mock)
end
-
it "saves run status data to a file as JSON" do
expect(@handler).to receive(:build_report_dir)
@handler.run_report_unsafe(@run_status)
@@ -59,6 +58,5 @@ describe Chef::Handler::JsonFile do
expect(reported_data["end_time"]).to eq((@expected_time + 5).to_s)
expect(reported_data["elapsed_time"]).to eq(5)
end
-
end
end