summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2021-04-02 17:41:34 -0700
committerGitHub <noreply@github.com>2021-04-02 17:41:34 -0700
commit890412ab67159b46678a6a9acd7a270e6540bc62 (patch)
tree0ab17a312a9344ffbe01e5fef804f7f4711630a5
parent67d19d36a1c6b6ffeac84b6cc209e2ccba5bc783 (diff)
parentf82140f1d8ef22adb98cf4be3f61e3aa21942e61 (diff)
downloadchef-890412ab67159b46678a6a9acd7a270e6540bc62.tar.gz
Merge pull request #11298 from chef/cron_16_again
Fix the cron skip on macOS logic
-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 620d21a3ee..51795fdf59 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -145,7 +145,7 @@ RSpec.configure do |config|
config.filter_run_excluding macos_only: true unless macos?
config.filter_run_excluding macos_1013: true unless macos_1013?
config.filter_run_excluding macos_gte_1014: true unless macos_gte_1014?
- 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?