summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Doherty <cdoherty@getchef.com>2014-09-11 17:01:50 -0700
committerChris Doherty <cdoherty@getchef.com>2014-09-15 15:22:53 -0700
commit26e16d828034cc3b3b6a3e0b2e22d6dabfc053b8 (patch)
tree33894411fa52bac914a00d6d9c384b4715548439
parent49582c3db4e3b54674ecfb57fe82157720350274 (diff)
downloadchef-26e16d828034cc3b3b6a3e0b2e22d6dabfc053b8.tar.gz
Fix ipv6 integration spec: single-quote pathname which can have spaces.
-rw-r--r--spec/integration/client/ipv6_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/integration/client/ipv6_spec.rb b/spec/integration/client/ipv6_spec.rb
index f49b7b7711..76dd1938f7 100644
--- a/spec/integration/client/ipv6_spec.rb
+++ b/spec/integration/client/ipv6_spec.rb
@@ -76,7 +76,7 @@ END_CLIENT_RB
let(:chef_dir) { File.join(File.dirname(__FILE__), "..", "..", "..", "bin") }
- let(:chef_client_cmd) { %Q[ruby #{chef_dir}/chef-client -c "#{path_to('config/client.rb')}" -lwarn] }
+ let(:chef_client_cmd) { %Q[ruby '#{chef_dir}/chef-client' -c "#{path_to('config/client.rb')}" -lwarn] }
after do
FileUtils.rm_rf(cache_path)