summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnshul Sharma <justanshulsharma@gmail.com>2014-11-04 10:18:34 +0530
committerAnshul Sharma <justanshulsharma@gmail.com>2014-11-04 10:18:34 +0530
commit47dbeac97bcb57c0eb90a18992faa44272936db5 (patch)
tree64b668fade5bea07d58481b51dd45bd29dd8cc0b
parent980cd1a4bc58d9cda786db35d86d8901dda52079 (diff)
downloadchef-47dbeac97bcb57c0eb90a18992faa44272936db5.tar.gz
Update 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 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]')