summaryrefslogtreecommitdiff
path: root/chef/spec/unit/resource_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'chef/spec/unit/resource_spec.rb')
-rw-r--r--chef/spec/unit/resource_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/chef/spec/unit/resource_spec.rb b/chef/spec/unit/resource_spec.rb
index 72be22fa04..fdb3816788 100644
--- a/chef/spec/unit/resource_spec.rb
+++ b/chef/spec/unit/resource_spec.rb
@@ -204,7 +204,7 @@ describe Chef::Resource do
describe "self.json_create" do
it "should deserialize itself from json" do
json = @resource.to_json
- serialized_node = JSON.parse(json)
+ serialized_node = Chef::JSON.from_json(json)
serialized_node.should be_a_kind_of(Chef::Resource)
serialized_node.name.should eql(@resource.name)
end