summaryrefslogtreecommitdiff
path: root/chef/spec/unit/handler/json_file_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'chef/spec/unit/handler/json_file_spec.rb')
-rw-r--r--chef/spec/unit/handler/json_file_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/chef/spec/unit/handler/json_file_spec.rb b/chef/spec/unit/handler/json_file_spec.rb
index 7a1c112360..6d3de0b970 100644
--- a/chef/spec/unit/handler/json_file_spec.rb
+++ b/chef/spec/unit/handler/json_file_spec.rb
@@ -52,7 +52,7 @@ describe Chef::Handler::JsonFile do
it "saves run status data to a file as JSON" do
@handler.should_receive(:build_report_dir)
@handler.run_report_unsafe(@run_status)
- reported_data = JSON.parse(@file_mock.string)
+ reported_data = Chef::JSON.from_json(@file_mock.string)
reported_data['exception'].should == "Exception: Boy howdy!"
reported_data['start_time'].should == @expected_time.iso8601
reported_data['end_time'].should == (@expected_time + 5).iso8601