summaryrefslogtreecommitdiff
path: root/features/steps/deploy_steps.rb
diff options
context:
space:
mode:
Diffstat (limited to 'features/steps/deploy_steps.rb')
-rw-r--r--features/steps/deploy_steps.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/features/steps/deploy_steps.rb b/features/steps/deploy_steps.rb
index 2a3906f5ad..ace9b0b173 100644
--- a/features/steps/deploy_steps.rb
+++ b/features/steps/deploy_steps.rb
@@ -72,7 +72,7 @@ Then /^the callback named <callback> should have run$/ do |callback_files|
hook_name = file.first.gsub(/\.rb$/, "")
evidence_file = "deploy/current/app/" + hook_name
expected_contents = {"hook_name" => hook_name, "env" => "production"}
- actual_contents = JSON.parse(IO.read(File.join(tmpdir, evidence_file)))
+ actual_contents = Chef::JSON.from_json(IO.read(File.join(tmpdir, evidence_file)))
expected_contents.should == actual_contents
end
end