summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2020-07-21 19:04:26 -0700
committerGitHub <noreply@github.com>2020-07-21 19:04:26 -0700
commitd52e33aac8fa9dc41ebcba4ad12844a32c752750 (patch)
tree652cff02366e77bbdc5f941f01fb655fb001dae0 /spec
parent960b4227b512651621676757d9d01e6d087a5ccd (diff)
downloadchef-d52e33aac8fa9dc41ebcba4ad12844a32c752750.tar.gz
Update spec/unit/resource/macos_user_defaults_spec.rb
Signed-off-by: Tim Smith <tsmith@chef.io> Co-authored-by: pete higgins <pete@peterhiggins.org>
Diffstat (limited to 'spec')
-rw-r--r--spec/unit/resource/macos_user_defaults_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/resource/macos_user_defaults_spec.rb b/spec/unit/resource/macos_user_defaults_spec.rb
index 490a938230..3907a24545 100644
--- a/spec/unit/resource/macos_user_defaults_spec.rb
+++ b/spec/unit/resource/macos_user_defaults_spec.rb
@@ -30,7 +30,7 @@ describe Chef::Resource::MacosUserDefaults do
expect(resource.domain).to eql("NSGlobalDomain")
end
- it "the value property coerces keys in hashes to symbols so we can compare them with plist data" do
+ it "the value property coerces keys in hashes to strings so we can compare them with plist data" do
resource.value "User": "/Library/Managed Installs/way_fake.log"
expect(resource.value).to eq({ "User" => "/Library/Managed Installs/way_fake.log" })
end