summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn McCrae <john.mccrae@progress.com>2022-01-13 11:36:24 -0800
committerJohn McCrae <john.mccrae@progress.com>2022-01-31 15:55:55 -0800
commit238e59873a0c6fe1237e4b9758f09d6a14ef17e7 (patch)
treece17a3430e54abd2ac2d2ddaf0c48d749ae8fbd7
parent059232688d6cf2fc49d4855e429bbe85b7b2e866 (diff)
downloadchef-238e59873a0c6fe1237e4b9758f09d6a14ef17e7.tar.gz
Update Chef Client to retrieve client.pem from Windows CertStore
Signed-off-by: John McCrae <john.mccrae@progress.com>
-rw-r--r--spec/unit/util/dsc/local_configuration_manager_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/util/dsc/local_configuration_manager_spec.rb b/spec/unit/util/dsc/local_configuration_manager_spec.rb
index 98cd04d263..510038db73 100644
--- a/spec/unit/util/dsc/local_configuration_manager_spec.rb
+++ b/spec/unit/util/dsc/local_configuration_manager_spec.rb
@@ -185,7 +185,7 @@ describe Chef::Util::DSC::LocalConfigurationManager do
context "when invalid dsc script is given" do
it "raises exception" do
configuration_document = "invalid-config"
- expect { lcm.send(:run_configuration_cmdlet, configuration_document, true) }.to raise_error(Chef_PowerShell::PowerShellExceptions::PowerShellCommandFailed)
+ expect { lcm.send(:run_configuration_cmdlet, configuration_document, true) }.to raise_error(ChefPowerShell::PowerShellExceptions::PowerShellCommandFailed)
end
end
end