summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2021-09-17 10:11:55 -0700
committerTim Smith <tsmith84@gmail.com>2021-09-17 10:11:55 -0700
commit6ed3f556eafb387f7ad8dd45bbccb1388c4162d3 (patch)
tree30d6f737b75fe854bd207cde0f2d28bce7493b3a
parente7a093458db3752b93f743b7e53c4f9c17717c33 (diff)
downloadchef-6ed3f556eafb387f7ad8dd45bbccb1388c4162d3.tar.gz
Chefstyle fixes
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--spec/unit/resource/homebrew_cask_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/unit/resource/homebrew_cask_spec.rb b/spec/unit/resource/homebrew_cask_spec.rb
index 0d2a774754..2d80ad0728 100644
--- a/spec/unit/resource/homebrew_cask_spec.rb
+++ b/spec/unit/resource/homebrew_cask_spec.rb
@@ -19,7 +19,7 @@ require "spec_helper"
describe Chef::Resource::HomebrewCask do
- context 'name with under bar' do
+ context "name with under bar" do
let(:resource) { Chef::Resource::HomebrewCask.new("fakey_fakerton") }
it "has a resource name of :homebrew_cask" do
@@ -40,7 +40,7 @@ describe Chef::Resource::HomebrewCask do
end
end
- context 'name with high fun' do
+ context "name with high fun" do
let(:resource) { Chef::Resource::HomebrewCask.new("fakey-fakerton") }
it "the cask_name property is the name_property" do
@@ -48,7 +48,7 @@ describe Chef::Resource::HomebrewCask do
end
end
- context 'name with at mark' do
+ context "name with at mark" do
let(:resource) { Chef::Resource::HomebrewCask.new("fakey-fakerton@10") }
it "the cask_name property is the name_property" do