diff options
author | John McCrae <john.mccrae@progress.com> | 2021-06-01 16:34:40 -0700 |
---|---|---|
committer | John McCrae <john.mccrae@progress.com> | 2021-06-01 16:34:40 -0700 |
commit | c76c7f7aaf136896df9b8c836597a0e5a1653463 (patch) | |
tree | 0d50b4c4dd515ec4c3f62437404e273221ab7584 /spec | |
parent | 0f82a7ec59e7380e33dd9754a7677db25385b647 (diff) | |
download | chef-c76c7f7aaf136896df9b8c836597a0e5a1653463.tar.gz |
Updated the Windows Pagefile resource to use PowerShell over WMI, added a corresponding test file
Signed-off-by: John McCrae <john.mccrae@progress.com>
Diffstat (limited to 'spec')
-rw-r--r-- | spec/functional/resource/windows_pagefile_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/functional/resource/windows_pagefile_spec.rb b/spec/functional/resource/windows_pagefile_spec.rb index ba50b34b2a..25ec8455c8 100644 --- a/spec/functional/resource/windows_pagefile_spec.rb +++ b/spec/functional/resource/windows_pagefile_spec.rb @@ -21,8 +21,8 @@ require "chef/mixin/powershell_exec" describe Chef::Resource::WindowsPagefile, :windows_only do include Chef::Mixin::PowershellExec - let(:c_path) { 'C' } - let(:e_path) { 'E' } + let(:c_path) { "C" } + let(:e_path) { "E" } let(:run_context) do node = Chef::Node.new |