summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Doherty <cdoherty@getchef.com>2014-09-11 17:16:43 -0700
committerChris Doherty <cdoherty@getchef.com>2014-09-15 15:22:54 -0700
commitf4cf3816e442d6a57432538b462254e803461857 (patch)
tree1ab0bd673a2fccb1eccb60bd313bce9d2dbe9122
parent26e16d828034cc3b3b6a3e0b2e22d6dabfc053b8 (diff)
downloadchef-f4cf3816e442d6a57432538b462254e803461857.tar.gz
Fix some client integrations with path quoting.
-rw-r--r--spec/integration/client/client_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/integration/client/client_spec.rb b/spec/integration/client/client_spec.rb
index 8a1a65249b..0144ae0ce3 100644
--- a/spec/integration/client/client_spec.rb
+++ b/spec/integration/client/client_spec.rb
@@ -16,7 +16,7 @@ describe "chef-client" do
# machine that has omnibus chef installed. In that case we need to ensure
# we're running `chef-client` from the source tree and not the external one.
# cf. CHEF-4914
- let(:chef_client) { "ruby #{chef_dir}/chef-client" }
+ let(:chef_client) { "ruby '#{chef_dir}/chef-client'" }
when_the_repository "has a cookbook with a no-op recipe" do
before { file 'cookbooks/x/recipes/default.rb', '' }