summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Hinderliter <tim@opscode.com>2010-10-29 15:48:26 -0700
committerTim Hinderliter <tim@opscode.com>2010-10-29 15:48:26 -0700
commit61e96e4d594ad149c326afc2137375007f774d81 (patch)
treece8348ab40dca30835c6bbece17bcd59aebcccb1
parent9f582d3851a6c76669424e947d38a4bd6df7c0b4 (diff)
downloadchef-61e96e4d594ad149c326afc2137375007f774d81.tar.gz
don't need string expansion here
-rw-r--r--features/steps/run_client_steps.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/features/steps/run_client_steps.rb b/features/steps/run_client_steps.rb
index c8361ba773..0ecf85ec00 100644
--- a/features/steps/run_client_steps.rb
+++ b/features/steps/run_client_steps.rb
@@ -77,7 +77,7 @@ When /^I run the chef\-client for '(.+)' seconds$/ do |run_for|
client_pid = Process.fork do
STDOUT.reopen(File.open(stdout_filename, "w"))
STDERR.reopen(File.open(stderr_filename, "w"))
- exec "#{chef_client_command_string}"
+ exec chef_client_command_string()
exit 2
end