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 17:40:56 -0700
commitf82140f1d8ef22adb98cf4be3f61e3aa21942e61 (patch)
tree0ab17a312a9344ffbe01e5fef804f7f4711630a5
parent67d19d36a1c6b6ffeac84b6cc209e2ccba5bc783 (diff)
downloadchef-f82140f1d8ef22adb98cf4be3f61e3aa21942e61.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 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?