summaryrefslogtreecommitdiff
path: root/features
diff options
context:
space:
mode:
authorAdam Jacob <adam@opscode.com>2009-05-21 16:21:26 -0700
committerAdam Jacob <adam@opscode.com>2009-05-21 16:21:26 -0700
commit29e562cbd5c0750d2237c6d16965398e6933164c (patch)
treebfc8de9bdbb1c1c437b901ac0f4c976c2bfb7d34 /features
parentb471c89bf90ddf3d31ebde11a720b0b44d63157f (diff)
downloadchef-29e562cbd5c0750d2237c6d16965398e6933164c.tar.gz
Fixing node display for override and default attributes, fixing a bug with node recipe expansion
Diffstat (limited to 'features')
-rw-r--r--features/steps/node_steps.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/features/steps/node_steps.rb b/features/steps/node_steps.rb
index 033cea4a12..a7921c7868 100644
--- a/features/steps/node_steps.rb
+++ b/features/steps/node_steps.rb
@@ -24,7 +24,7 @@ Given /^a validated node$/ do
client.register
client.authenticate
client.build_node
- client.node.recipes = "integration_setup"
+ client.node.recipes << "integration_setup"
end
Given /^it includes the recipe '(.+)'$/ do |recipe|