diff options
author | Tim Smith <tsmith@chef.io> | 2018-03-28 11:56:34 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-03-28 12:03:23 -0700 |
commit | b77f792abb7753208b0f1c23af3a84b024a6ccf8 (patch) | |
tree | 05bedbc562e8cd536a9c975a72da31bf5b882bcd /spec | |
parent | ee2d1c41844d5d28b17e0a749141a5ca9d3e6c8c (diff) | |
download | chef-b77f792abb7753208b0f1c23af3a84b024a6ccf8.tar.gz |
Keep case sensitivity on Windows < 2012case_insensitve_dism
Dism here does not support case insensitive feature installs. This isn't a user behavior change sine they always needed the feature to have the right case here.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'spec')
-rw-r--r-- | spec/unit/resource/windows_feature_dism.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/resource/windows_feature_dism.rb b/spec/unit/resource/windows_feature_dism.rb index 53f3d73347..4f973f7e82 100644 --- a/spec/unit/resource/windows_feature_dism.rb +++ b/spec/unit/resource/windows_feature_dism.rb @@ -32,7 +32,7 @@ describe Chef::Resource::WindowsFeatureDism do expect(resource.feature_name).to eql(%w{snmp dhcp}) end - it "coerces comma separated lists of features to a lowercase arrays" do + it "coerces comma separated lists of features to a lowercase array" do resource.feature_name "SNMP, DHCP" expect(resource.feature_name).to eql(%w{snmp dhcp}) end |