summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2018-02-23 11:09:04 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2018-02-23 11:09:04 -0800
commit00f35ace0da4920ce93f0aa6883b55010136166e (patch)
tree1953f6b55e95802d9183193d6e33b9332d4a4710
parent87079d5014b331da6d55125a2d91c283c395a038 (diff)
downloadchef-00f35ace0da4920ce93f0aa6883b55010136166e.tar.gz
Revert "remove more debugging and revert no-longer necessary fix"
This reverts commit 80b9d0448d9fb01a7188cbee6c9595bf0cf5b974.
-rw-r--r--spec/unit/node/immutable_collections_spec.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/spec/unit/node/immutable_collections_spec.rb b/spec/unit/node/immutable_collections_spec.rb
index 29ae8799e9..d7427cd983 100644
--- a/spec/unit/node/immutable_collections_spec.rb
+++ b/spec/unit/node/immutable_collections_spec.rb
@@ -90,7 +90,9 @@ describe Chef::Node::ImmutableMash do
end
it "should create a mash with the same content" do
- expect(@copy).to eql(@immutable_mash)
+ puts @copy.class
+ puts @immutable_mash.class
+ expect(@immutable_mash).to eq(@copy)
end
it "should allow mutation" do
@@ -318,7 +320,7 @@ describe Chef::Node::ImmutableArray do
end
it "should create an array with the same content" do
- expect(@immutable_nested_array).to eq(@copy)
+ expect(@copy).to eq(@immutable_nested_array)
end
it "should allow mutation" do