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:05:46 -0700 |
commit | a556a6d04efdba1d4e5b94f41d6118e179c341df (patch) | |
tree | 665774407f77c427c435e88acd3985cdb1856900 /spec | |
parent | 128ffdd40823a877b3063856a9f107d4264e7b6a (diff) | |
download | chef-a556a6d04efdba1d4e5b94f41d6118e179c341df.tar.gz |
missing spec fixlcg/immutablize-speedup
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'spec')
-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 68ce5e5abd..2d3392041c 100644 --- a/spec/unit/node/immutable_collections_spec.rb +++ b/spec/unit/node/immutable_collections_spec.rb @@ -176,7 +176,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 |