diff options
author | DJ Mountney <david@twkie.net> | 2017-08-11 16:18:26 -0700 |
---|---|---|
committer | DJ Mountney <david@twkie.net> | 2017-08-11 16:18:26 -0700 |
commit | b985f6dcf93d822aad7a7f4d87029fd533d26f50 (patch) | |
tree | 78522efc78bc52eed23b4a8d3f74d453c316f891 /spec/unit/node_spec.rb | |
parent | bc5acbe0d0f1d7e1de409694ff56cd721598c31f (diff) | |
download | chef-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>
Diffstat (limited to 'spec/unit/node_spec.rb')
-rw-r--r-- | spec/unit/node_spec.rb | 2 |
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 |