summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2021-04-02 16:28:43 -0700
committerTim Smith <tsmith84@gmail.com>2021-04-02 16:28:43 -0700
commit9c25e3c784c7f3f493a87db063ad98d2472ba2b7 (patch)
treef60a9ee3dff4a81b21103c8251dccb9a4a38b0ce
parent3c784219563b48d487685e3d73b2c9581ccb9991 (diff)
downloadchef-9c25e3c784c7f3f493a87db063ad98d2472ba2b7.tar.gz
Fix the cron skip on macOS logic
These are brain hurting Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--spec/spec_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index 810a09c11e..170d7095b9 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -138,7 +138,7 @@ RSpec.configure do |config|
config.filter_run_excluding not_supported_on_windows: true if windows?
config.filter_run_excluding not_supported_on_macos: true if macos?
config.filter_run_excluding macos_only: true unless macos?
- config.filter_run_excluding not_macos_gte_11: true unless macos_gte_11?
+ config.filter_run_excluding not_macos_gte_11: true if macos_gte_11?
config.filter_run_excluding not_supported_on_aix: true if aix?
config.filter_run_excluding not_supported_on_solaris: true if solaris?
config.filter_run_excluding not_supported_on_gce: true if gce?