summaryrefslogtreecommitdiff
path: root/spec/unit/node_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/node_spec.rb')
-rw-r--r--spec/unit/node_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/node_spec.rb b/spec/unit/node_spec.rb
index b6798b2de9..7dc972b5a0 100644
--- a/spec/unit/node_spec.rb
+++ b/spec/unit/node_spec.rb
@@ -340,7 +340,7 @@ describe Chef::Node do
it "consume_attributes does not exhibit chef/chef/issues/6302 bug" do
node.normal["a"]["r1"] = nil
- node.consume_attributes({"a" => { "r2" => nil}})
+ node.consume_attributes({ "a" => { "r2" => nil } })
expect(node["a"]["r1"]).to be_nil
expect(node["a"]["r2"]).to be_nil
end