summaryrefslogtreecommitdiff
path: root/chef-config/spec/unit/path_helper_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'chef-config/spec/unit/path_helper_spec.rb')
-rw-r--r--chef-config/spec/unit/path_helper_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/chef-config/spec/unit/path_helper_spec.rb b/chef-config/spec/unit/path_helper_spec.rb
index 3eedb8bbf5..5721e105ec 100644
--- a/chef-config/spec/unit/path_helper_spec.rb
+++ b/chef-config/spec/unit/path_helper_spec.rb
@@ -355,14 +355,14 @@ RSpec.describe ChefConfig::PathHelper do
end
context "on windows" do
- let (:is_windows) { true }
+ let(:is_windows) { true }
end
context "on unix" do
- let (:is_windows) { false }
+ let(:is_windows) { false }
context "when HOME is not set" do
- let (:env) { {} }
+ let(:env) { {} }
it "returns an empty array" do
expect(path_helper.all_homes).to eq([])
end