summaryrefslogtreecommitdiff
path: root/spec/functional/shell_spec.rb
diff options
context:
space:
mode:
authordanielsdeleo <dan@opscode.com>2013-01-21 18:32:59 -0800
committerdanielsdeleo <dan@opscode.com>2013-01-21 18:32:59 -0800
commit761edcb0baf6f49d481e2587a391276ee8c176ab (patch)
tree90be3d08b348a44194b3e8e7d434ad161fc9dee6 /spec/functional/shell_spec.rb
parentcaaf48f0c04ff749ef1526a85a3c0e62cfc9715c (diff)
downloadchef-761edcb0baf6f49d481e2587a391276ee8c176ab.tar.gz
fix typo in test chef-shell config file path
Diffstat (limited to 'spec/functional/shell_spec.rb')
-rw-r--r--spec/functional/shell_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/functional/shell_spec.rb b/spec/functional/shell_spec.rb
index 7f6b9df556..d80cd514c3 100644
--- a/spec/functional/shell_spec.rb
+++ b/spec/functional/shell_spec.rb
@@ -60,7 +60,7 @@ describe Chef::Shell do
# Windows ruby installs don't (always?) have PTY,
# so hide the require here
require 'pty'
- config = File.expand_path("chef-config.rb", CHEF_SPEC_DATA)
+ config = File.expand_path("shef-config.rb", CHEF_SPEC_DATA)
path_to_chef_shell = File.expand_path("../../../bin/chef-shell", __FILE__)
reader, writer, pid = PTY.spawn("#{path_to_chef_shell} -c #{config} #{options}")
read_until(reader, "chef >")