summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn McCrae <jmccrae@chef.io>2021-04-19 15:48:24 -0700
committerJohn McCrae <jmccrae@chef.io>2021-04-20 12:00:28 -0700
commit330b7b6a9322232f974371f86d5de0127be4477c (patch)
tree978b880aebc988561fc40e280a061ce47607b7b2
parent7c6a8dd345d210d89329594eae56773c590eb63c (diff)
downloadchef-330b7b6a9322232f974371f86d5de0127be4477c.tar.gz
testing this to see if single vs double quotes are causing the download error
Signed-off-by: John McCrae <jmccrae@chef.io>
-rw-r--r--spec/functional/resource/windows_certificate_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/functional/resource/windows_certificate_spec.rb b/spec/functional/resource/windows_certificate_spec.rb
index aaa31f0bdd..ef6c5400af 100644
--- a/spec/functional/resource/windows_certificate_spec.rb
+++ b/spec/functional/resource/windows_certificate_spec.rb
@@ -56,7 +56,7 @@ describe Chef::Resource::WindowsCertificate, :windows_only do
let(:store) { "Chef-Functional-Test" }
let(:store_name) { "MY" }
let(:store_location) { "LocalMachine" }
- let(:download_cert_url) { "https://testingchef.blob.core.windows.net/files/test.cer?sv=2020-02-10&ss=b&srt=sco&sp=rlax&se=2022-03-20T01:20:15Z&st=2021-03-19T17:20:15Z&spr=https&sig=nMmvTTXp%2Fn0%2FYizBV8BzhjRJ%2Bmk%2BxYZ9529yOfqDxjQ%3D" }
+ let(:download_cert_url) { 'https://testingchef.blob.core.windows.net/files/test.cer?sv=2020-02-10&ss=b&srt=sco&sp=rlax&se=2022-03-20T01:20:15Z&st=2021-03-19T17:20:15Z&spr=https&sig=nMmvTTXp%2Fn0%2FYizBV8BzhjRJ%2Bmk%2BxYZ9529yOfqDxjQ%3D' }
let(:cert_output_path) { ::File.join(Chef::Config[:file_cache_path], "output.cer") }
let(:pfx_output_path) { ::File.join(Chef::Config[:file_cache_path], "output.pfx") }
let(:key_output_path) { ::File.join(Chef::Config[:file_cache_path], "output.key") }