summaryrefslogtreecommitdiff
path: root/chef/spec/unit/openid_registration_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'chef/spec/unit/openid_registration_spec.rb')
-rw-r--r--chef/spec/unit/openid_registration_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/chef/spec/unit/openid_registration_spec.rb b/chef/spec/unit/openid_registration_spec.rb
index 5187ee0d21..5f8421e9f7 100644
--- a/chef/spec/unit/openid_registration_spec.rb
+++ b/chef/spec/unit/openid_registration_spec.rb
@@ -56,7 +56,7 @@ describe Chef::OpenIDRegistration, "from_json" do
oreg.name = "foobar"
oreg.set_password("monkey")
oreg_json = oreg.to_json
- nreg = JSON.parse(oreg_json)
+ nreg = Chef::JSON.from_json(oreg_json)
nreg.should be_a_kind_of(Chef::OpenIDRegistration)
%w{name salt password validated}.each do |verify|
nreg.send(verify.to_sym).should eql(oreg.send(verify.to_sym))