summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2021-07-26 16:59:46 -0700
committerTim Smith <tsmith@chef.io>2021-07-26 16:59:46 -0700
commitd6f6d3a5930270047b0493d924e9ee738a3d0ec3 (patch)
tree610fc2b59138141253c7ea9889a0acd55722ce65
parent26f35de452d5aab1f752556b8091a5e9656b5380 (diff)
downloadchef-d6f6d3a5930270047b0493d924e9ee738a3d0ec3.tar.gz
Chefstyle fixes
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--knife/spec/integration/cookbook_download_spec.rb2
-rw-r--r--spec/unit/resource/homebrew_cask_spec.rb6
2 files changed, 4 insertions, 4 deletions
diff --git a/knife/spec/integration/cookbook_download_spec.rb b/knife/spec/integration/cookbook_download_spec.rb
index 18b50ef824..589417126c 100644
--- a/knife/spec/integration/cookbook_download_spec.rb
+++ b/knife/spec/integration/cookbook_download_spec.rb
@@ -66,7 +66,7 @@ describe "knife cookbook download", :workstation do
Downloading root_files
Cookbook downloaded to #{tmpdir}/x-1.0.1
EOM
- )
+ )
end
end
end
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