summaryrefslogtreecommitdiff
path: root/spec/unit/knife/node_run_list_remove_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/knife/node_run_list_remove_spec.rb')
-rw-r--r--spec/unit/knife/node_run_list_remove_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/knife/node_run_list_remove_spec.rb b/spec/unit/knife/node_run_list_remove_spec.rb
index c5c7696091..4f753d7991 100644
--- a/spec/unit/knife/node_run_list_remove_spec.rb
+++ b/spec/unit/knife/node_run_list_remove_spec.rb
@@ -96,7 +96,7 @@ describe Chef::Knife::NodeRunListRemove do
it "should warn even more when the thing to remove is not in the runlist and unqualified" do
@node.run_list << "role[blah]"
@node.run_list << "recipe[duck::type]"
- @knife.name_args = %w(adam blork)
+ @knife.name_args = %w{adam blork}
expect(@knife.ui).to receive(:warn).with("blork is not in the run list")
expect(@knife.ui).to receive(:warn).with(/did you forget recipe\[\] or role\[\]/)
@knife.run