summaryrefslogtreecommitdiff
path: root/spec/spec_helper.rb
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-07-07 15:54:52 -0700
committerTim Smith <tsmith84@gmail.com>2020-07-07 17:32:22 -0700
commit6c4c32340ac0fcebb53768cb78f5760e55c35514 (patch)
tree70de57d90bacbe6be118c9b6ead9efc1e650098e /spec/spec_helper.rb
parented460911a49716817ded2986e81a5116dfbb795e (diff)
downloadchef-6c4c32340ac0fcebb53768cb78f5760e55c35514.tar.gz
Fix quotes for Chefstyle
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r--spec/spec_helper.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index a05a90e7a5..5dba5ea0be 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -24,10 +24,10 @@ module Shell
IRB = nil unless defined? IRB
end
-$LOAD_PATH.unshift File.expand_path('..', __dir__)
+$LOAD_PATH.unshift File.expand_path("..", __dir__)
-$LOAD_PATH.unshift File.expand_path('../chef-config/lib', __dir__)
-$LOAD_PATH.unshift File.expand_path('../chef-utils/lib', __dir__)
+$LOAD_PATH.unshift File.expand_path("../chef-config/lib", __dir__)
+$LOAD_PATH.unshift File.expand_path("../chef-utils/lib", __dir__)
require "rubygems"
require "rspec/mocks"