summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDJ Mountney <david@twkie.net>2017-08-11 16:18:26 -0700
committerDJ Mountney <david@twkie.net>2017-08-11 16:18:26 -0700
commitb985f6dcf93d822aad7a7f4d87029fd533d26f50 (patch)
tree78522efc78bc52eed23b4a8d3f74d453c316f891
parentbc5acbe0d0f1d7e1de409694ff56cd721598c31f (diff)
downloadchef-b985f6dcf93d822aad7a7f4d87029fd533d26f50.tar.gz
Fix rubocop styling issue in node_spec
For the recently added DeepMerge test on a VividMash Signed-off-by: DJ Mountney <david@twkie.net>
-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