diff options
author | Tim Smith <tsmith@chef.io> | 2018-06-26 22:35:39 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-06-26 22:36:02 -0700 |
commit | 604c0470a8b56298c8e5fd1efb96a0e6881a6db4 (patch) | |
tree | c7b0baa6b224c2b765127cc2a6b96acc265a3b4e /spec | |
parent | c36147dea6c1147da2c8159cfe3c4d034572eab9 (diff) | |
download | chef-604c0470a8b56298c8e5fd1efb96a0e6881a6db4.tar.gz |
Chefstyle fix
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'spec')
-rw-r--r-- | spec/unit/resource/chocolatey_config_spec.rb | 2 | ||||
-rw-r--r-- | spec/unit/resource/chocolatey_source_spec.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/resource/chocolatey_config_spec.rb b/spec/unit/resource/chocolatey_config_spec.rb index e92280307b..3c50642487 100644 --- a/spec/unit/resource/chocolatey_config_spec.rb +++ b/spec/unit/resource/chocolatey_config_spec.rb @@ -41,7 +41,7 @@ CONFIG # we save off the ENV and set ALLUSERSPROFILE so these specs will work on *nix and non-C drive Windows installs before(:each) do @original_env = ENV.to_hash - ENV['ALLUSERSPROFILE'] = 'C:\ProgramData' + ENV["ALLUSERSPROFILE"] = 'C:\ProgramData' end after(:each) do diff --git a/spec/unit/resource/chocolatey_source_spec.rb b/spec/unit/resource/chocolatey_source_spec.rb index ee179f931b..237eb5b787 100644 --- a/spec/unit/resource/chocolatey_source_spec.rb +++ b/spec/unit/resource/chocolatey_source_spec.rb @@ -41,7 +41,7 @@ CONFIG # we save off the ENV and set ALLUSERSPROFILE so these specs will work on *nix and non-C drive Windows installs before(:each) do @original_env = ENV.to_hash - ENV['ALLUSERSPROFILE'] = 'C:\ProgramData' + ENV["ALLUSERSPROFILE"] = 'C:\ProgramData' end after(:each) do |