summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnshul Sharma <justanshulsharma@gmail.com>2014-11-04 06:23:46 +0530
committerAnshul Sharma <justanshulsharma@gmail.com>2014-11-04 06:23:46 +0530
commit980cd1a4bc58d9cda786db35d86d8901dda52079 (patch)
treed7e38fcc8997fee52925eaac75227c5d6aca4149
parent298040c6038065dc9d10d00af8766394c2b466c7 (diff)
downloadchef-980cd1a4bc58d9cda786db35d86d8901dda52079.tar.gz
swapped lines
-rw-r--r--spec/unit/knife/node_run_list_remove_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/knife/node_run_list_remove_spec.rb b/spec/unit/knife/node_run_list_remove_spec.rb
index 744c24596a..50b8248e46 100644
--- a/spec/unit/knife/node_run_list_remove_spec.rb
+++ b/spec/unit/knife/node_run_list_remove_spec.rb
@@ -77,8 +77,8 @@ describe Chef::Knife::NodeRunListRemove do
end
it "should remove the items from the run list when name args contains multiple run lists" do
- @node.run_list << 'role[monkey]'
- @node.run_list << 'recipe[duck::type]'
+ @node.run_list << 'role[blah]'
+ @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]')