diff options
author | Anshul Sharma <justanshulsharma@gmail.com> | 2014-11-04 10:18:34 +0530 |
---|---|---|
committer | Anshul Sharma <justanshulsharma@gmail.com> | 2014-11-04 10:18:34 +0530 |
commit | 47dbeac97bcb57c0eb90a18992faa44272936db5 (patch) | |
tree | 64b668fade5bea07d58481b51dd45bd29dd8cc0b /spec/unit/knife | |
parent | 980cd1a4bc58d9cda786db35d86d8901dda52079 (diff) | |
download | chef-47dbeac97bcb57c0eb90a18992faa44272936db5.tar.gz |
Update node_run_list_remove_spec.rb
Diffstat (limited to 'spec/unit/knife')
-rw-r--r-- | spec/unit/knife/node_run_list_remove_spec.rb | 2 |
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]') |