diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2016-02-19 09:28:33 -0800 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2016-02-19 09:28:33 -0800 |
commit | 92bec4bb96d857f027068fc56af46c76c484fd50 (patch) | |
tree | 2cffea3fc9466d0c5e2baa7cc7630abb0ed7aecb /spec/unit/node | |
parent | 6077b99f6ad1bc9a082f575f3818e69f05d8c8dc (diff) | |
download | chef-92bec4bb96d857f027068fc56af46c76c484fd50.tar.gz |
flip multiline function arguments aroundlcg/rubocop-0.37.2
no enforced trailing comma on arguments...
Diffstat (limited to 'spec/unit/node')
-rw-r--r-- | spec/unit/node/attribute_spec.rb | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/spec/unit/node/attribute_spec.rb b/spec/unit/node/attribute_spec.rb index 024599bcee..f28c2598e3 100644 --- a/spec/unit/node/attribute_spec.rb +++ b/spec/unit/node/attribute_spec.rb @@ -558,7 +558,7 @@ describe Chef::Node::Attribute do "one" => { "six" => "seven" }, "snack" => "cookies", }, - {}, + {} ) end @@ -606,7 +606,7 @@ describe Chef::Node::Attribute do "one" => "six", "snack" => "cookies", }, - {}, + {} ) end @@ -644,7 +644,7 @@ describe Chef::Node::Attribute do "one" => "six", "snack" => "cookies", }, - {}, + {} ) end @@ -680,7 +680,7 @@ describe Chef::Node::Attribute do "one" => "six", "snack" => "cookies", }, - {}, + {} ) end @@ -716,7 +716,7 @@ describe Chef::Node::Attribute do "one" => "six", "snack" => "cookies", }, - {}, + {} ) end @@ -760,7 +760,7 @@ describe Chef::Node::Attribute do "one" => "six", "snack" => "cookies", }, - {}, + {} ) @empty = Chef::Node::Attribute.new({}, {}, {}, {}) end @@ -794,7 +794,7 @@ describe Chef::Node::Attribute do "one" => "six", "snack" => "cookies", }, - {}, + {} ) end @@ -851,7 +851,7 @@ describe Chef::Node::Attribute do "one" => "six", "snack" => "cookies", }, - {}, + {} ) end @@ -896,7 +896,7 @@ describe Chef::Node::Attribute do "one" => "six", "snack" => "cookies", }, - {}, + {} ) end @@ -937,7 +937,7 @@ describe Chef::Node::Attribute do "one" => "six", "snack" => "cookies", }, - {}, + {} ) end @@ -973,7 +973,7 @@ describe Chef::Node::Attribute do "one" => "six", "snack" => "cookies", }, - {}, + {} ) end @@ -1003,7 +1003,7 @@ describe Chef::Node::Attribute do %w{one six}, %w{snack cookies}, ["snakes", "on a plane"], - ], + ] ) end end @@ -1023,7 +1023,7 @@ describe Chef::Node::Attribute do "one" => "six", "snack" => "cookies", }, - {}, + {} ) @empty = Chef::Node::Attribute.new({}, {}, {}, {}) |