summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 50b8248e46..7c0627f091 100644
--- a/spec/unit/knife/node_run_list_remove_spec.rb
+++ b/spec/unit/knife/node_run_list_remove_spec.rb
@@ -78,7 +78,7 @@ describe Chef::Knife::NodeRunListRemove do
it "should remove the items from the run list when name args contains multiple run lists" do
@node.run_list << 'role[blah]'
- @node.run_list << 'recipe[duck::type'
+ @node.run_list << 'recipe[duck::type]'
@knife.name_args = [ 'adam', 'role[monkey], recipe[duck::type]', 'role[blah]' ]
@knife.run
@node.run_list.should_not include('role[monkey]')