diff options
Diffstat (limited to 'chef-config/spec/spec_helper.rb')
-rw-r--r-- | chef-config/spec/spec_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chef-config/spec/spec_helper.rb b/chef-config/spec/spec_helper.rb index 107becb9eb..6a324474e1 100644 --- a/chef-config/spec/spec_helper.rb +++ b/chef-config/spec/spec_helper.rb @@ -32,8 +32,8 @@ RSpec.configure do |config| config.filter_run :focus config.run_all_when_everything_filtered = true - config.filter_run_excluding :windows_only => true unless ChefConfig.windows? - config.filter_run_excluding :unix_only => true if ChefConfig.windows? + config.filter_run_excluding windows_only: true unless ChefConfig.windows? + config.filter_run_excluding unix_only: true if ChefConfig.windows? # Limits the available syntax to the non-monkey patched syntax that is # recommended. For more details, see: |