diff options
author | danielsdeleo <dan@opscode.com> | 2013-01-21 18:32:59 -0800 |
---|---|---|
committer | danielsdeleo <dan@opscode.com> | 2013-01-21 18:32:59 -0800 |
commit | 761edcb0baf6f49d481e2587a391276ee8c176ab (patch) | |
tree | 90be3d08b348a44194b3e8e7d434ad161fc9dee6 /spec/functional/shell_spec.rb | |
parent | caaf48f0c04ff749ef1526a85a3c0e62cfc9715c (diff) | |
download | chef-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.rb | 2 |
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 >") |