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:52:39 -0700
commit1e9093ef3f185c9709cd9a71bf701d4b2ed673ef (patch)
treed7d650af978e031b99e01ab4c5e0622e46f15780
parentc3e0f4b932b26d98047ea0372241417ac044bfcd (diff)
downloadchef-lcg/backport-6355.tar.gz
missing spec fixlcg/backport-6355
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 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