diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2017-08-28 14:05:46 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2017-08-28 14:52:39 -0700 |
commit | 1e9093ef3f185c9709cd9a71bf701d4b2ed673ef (patch) | |
tree | d7d650af978e031b99e01ab4c5e0622e46f15780 /spec/unit | |
parent | c3e0f4b932b26d98047ea0372241417ac044bfcd (diff) | |
download | chef-1e9093ef3f185c9709cd9a71bf701d4b2ed673ef.tar.gz |
missing spec fixlcg/backport-6355
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'spec/unit')
-rw-r--r-- | spec/unit/node/immutable_collections_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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 |