summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2017-10-25 10:58:24 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2017-12-06 12:44:06 -0800
commit80b9d0448d9fb01a7188cbee6c9595bf0cf5b974 (patch)
tree77ff23fa84262dd3e85a78e63040006f09064087
parent9fe57c38a57135c7bd29ff05a1c7839a4d30c38c (diff)
downloadchef-80b9d0448d9fb01a7188cbee6c9595bf0cf5b974.tar.gz
remove more debugging and revert no-longer necessary fix
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
-rw-r--r--spec/unit/node/immutable_collections_spec.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/spec/unit/node/immutable_collections_spec.rb b/spec/unit/node/immutable_collections_spec.rb
index c8e664a652..96adedddcb 100644
--- a/spec/unit/node/immutable_collections_spec.rb
+++ b/spec/unit/node/immutable_collections_spec.rb
@@ -85,9 +85,7 @@ describe Chef::Node::ImmutableMash do
end
it "should create a mash with the same content" do
- puts @copy.class
- puts @immutable_mash.class
- expect(@immutable_mash).to eq(@copy)
+ expect(@copy).to eql(@immutable_mash)
end
it "should allow mutation" do
@@ -310,7 +308,7 @@ describe Chef::Node::ImmutableArray do
end
it "should create an array with the same content" do
- expect(@copy).to eq(@immutable_nested_array)
+ expect(@immutable_nested_array).to eq(@copy)
end
it "should allow mutation" do