From 1e9093ef3f185c9709cd9a71bf701d4b2ed673ef Mon Sep 17 00:00:00 2001 From: Lamont Granquist Date: Mon, 28 Aug 2017 14:05:46 -0700 Subject: missing spec fix Signed-off-by: Lamont Granquist --- spec/unit/node/immutable_collections_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/unit/node/immutable_collections_spec.rb b/spec/unit/node/immutable_collections_spec.rb index b7b8bcdc9e..30c711d720 100644 --- a/spec/unit/node/immutable_collections_spec.rb +++ b/spec/unit/node/immutable_collections_spec.rb @@ -125,7 +125,7 @@ describe Chef::Node::ImmutableArray do before do @immutable_array = Chef::Node::ImmutableArray.new(%w{foo bar baz} + Array(1..3) + [nil, true, false, [ "el", 0, nil ] ]) - immutable_mash = Chef::Node::ImmutableMash.new({ :m => "m" }) + immutable_mash = Chef::Node::ImmutableMash.new({ "m" => "m" }) @immutable_nested_array = Chef::Node::ImmutableArray.new(["level1", @immutable_array, immutable_mash]) end -- cgit v1.2.1