diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2016-02-09 08:17:32 -0800 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2016-02-09 08:17:32 -0800 |
commit | 37e02399a6e1dd281808a556f1420f8cf6e846fd (patch) | |
tree | 86834a5371fccfc474004233e45ab00dd7355574 /spec/unit/resource/chocolatey_package_spec.rb | |
parent | f073747786abbe6ada55ed24b696a03e39c3c45d (diff) | |
download | chef-37e02399a6e1dd281808a556f1420f8cf6e846fd.tar.gz |
autofixing auto-inserted delimiterslcg/chefstyle-batch
Diffstat (limited to 'spec/unit/resource/chocolatey_package_spec.rb')
-rw-r--r-- | spec/unit/resource/chocolatey_package_spec.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/unit/resource/chocolatey_package_spec.rb b/spec/unit/resource/chocolatey_package_spec.rb index 34874ac6b1..e43803a65f 100644 --- a/spec/unit/resource/chocolatey_package_spec.rb +++ b/spec/unit/resource/chocolatey_package_spec.rb @@ -42,13 +42,13 @@ describe Chef::Resource::ChocolateyPackage do end it "the package_name setter should accept arrays" do - resource.package_name(%w(git unzip)) - expect(resource.package_name).to eql(%w(git unzip)) + resource.package_name(%w{git unzip}) + expect(resource.package_name).to eql(%w{git unzip}) end it "the name should accept arrays" do - resource = Chef::Resource::ChocolateyPackage.new(%w(git unzip)) - expect(resource.package_name).to eql(%w(git unzip)) + resource = Chef::Resource::ChocolateyPackage.new(%w{git unzip}) + expect(resource.package_name).to eql(%w{git unzip}) end it "the default version should be nil" do |