summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-07-16 19:10:26 -0700
committerTim Smith <tsmith@chef.io>2018-07-16 19:10:26 -0700
commit9be5aee25dcb3e0a7a5dadd79722a1ee7f62ebcd (patch)
tree332f7866d2b8af65c0388d1e0a28b22c65ac706e
parent01fec7107ff4ed645b0e965c9e1fea6cbe9ea96c (diff)
downloadchef-9be5aee25dcb3e0a7a5dadd79722a1ee7f62ebcd.tar.gz
Remove check to exclude tests on macos 10.6
There's no need to check for this at this point. Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--spec/functional/resource/user/dscl_spec.rb1
-rw-r--r--spec/spec_helper.rb1
2 files changed, 0 insertions, 2 deletions
diff --git a/spec/functional/resource/user/dscl_spec.rb b/spec/functional/resource/user/dscl_spec.rb
index 78d7f2336e..e73a4ad3ee 100644
--- a/spec/functional/resource/user/dscl_spec.rb
+++ b/spec/functional/resource/user/dscl_spec.rb
@@ -21,7 +21,6 @@ require "chef/mixin/shell_out"
metadata = {
mac_osx_only: true,
requires_root: true,
- not_supported_on_mac_osx_106: true,
}
describe "Chef::Resource::User with Chef::Provider::User::Dscl provider", metadata do
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index d900fc2f37..1b3b85e2e5 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -143,7 +143,6 @@ RSpec.configure do |config|
config.filter_run_excluding skip_travis: true if ENV["TRAVIS"]
config.filter_run_excluding windows_only: true unless windows?
- config.filter_run_excluding not_supported_on_mac_osx_106: true if mac_osx_106?
config.filter_run_excluding not_supported_on_mac_osx: true if mac_osx?
config.filter_run_excluding mac_osx_only: true if !mac_osx?
config.filter_run_excluding not_supported_on_aix: true if aix?