summaryrefslogtreecommitdiff
path: root/spec/unit/role_spec.rb
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2016-02-09 08:17:32 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2016-02-09 08:17:32 -0800
commit37e02399a6e1dd281808a556f1420f8cf6e846fd (patch)
tree86834a5371fccfc474004233e45ab00dd7355574 /spec/unit/role_spec.rb
parentf073747786abbe6ada55ed24b696a03e39c3c45d (diff)
downloadchef-37e02399a6e1dd281808a556f1420f8cf6e846fd.tar.gz
autofixing auto-inserted delimiterslcg/chefstyle-batch
Diffstat (limited to 'spec/unit/role_spec.rb')
-rw-r--r--spec/unit/role_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/unit/role_spec.rb b/spec/unit/role_spec.rb
index a7b329c3d6..1bbbc4c7b0 100644
--- a/spec/unit/role_spec.rb
+++ b/spec/unit/role_spec.rb
@@ -85,12 +85,12 @@ describe Chef::Role do
describe "using the old #recipes API" do
it "should let you set the recipe array" do
- expect(@role.recipes(%w(one two))).to eq(%w(one two))
+ expect(@role.recipes(%w{one two})).to eq(%w{one two})
end
it "should let you return the recipe array" do
- @role.recipes(%w(one two))
- expect(@role.recipes).to eq(%w(one two))
+ @role.recipes(%w{one two})
+ expect(@role.recipes).to eq(%w{one two})
end
it "should not list roles in the recipe array" do