summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2017-08-28 14:05:46 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2017-08-28 14:05:46 -0700
commita556a6d04efdba1d4e5b94f41d6118e179c341df (patch)
tree665774407f77c427c435e88acd3985cdb1856900
parent128ffdd40823a877b3063856a9f107d4264e7b6a (diff)
downloadchef-lcg/immutablize-speedup.tar.gz
missing spec fixlcg/immutablize-speedup
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
-rw-r--r--spec/unit/node/immutable_collections_spec.rb2
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