diff options
author | Melissa Stone <melissa@puppet.com> | 2018-04-25 10:00:40 -0700 |
---|---|---|
committer | Melissa Stone <melissa@puppet.com> | 2018-04-25 10:00:40 -0700 |
commit | a7d0997489d71d9d53a5a1990ff5211169dcdfc5 (patch) | |
tree | 7e36c16e10275a9b93dde57318ce440d939262b8 /spec/spec_helper_acceptance.rb | |
parent | ba9d2ee71feabd9f2a1eda60f5fa90e25147bfac (diff) | |
download | puppet-mailalias_core-a7d0997489d71d9d53a5a1990ff5211169dcdfc5.tar.gz puppet-mailalias_core-a7d0997489d71d9d53a5a1990ff5211169dcdfc5.tar.bz2 |
Fix spec tests and rubocop errors
Diffstat (limited to 'spec/spec_helper_acceptance.rb')
-rw-r--r-- | spec/spec_helper_acceptance.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/spec_helper_acceptance.rb b/spec/spec_helper_acceptance.rb index 218a34d..0adde24 100644 --- a/spec/spec_helper_acceptance.rb +++ b/spec/spec_helper_acceptance.rb @@ -10,7 +10,7 @@ def beaker_opts end def non_windows_agents - agents.select { |agent| !agent['platform'].include?('windows') } + agents.reject { |agent| agent['platform'].include?('windows') } end RSpec.configure do |c| |