Remove hardcoded test failure date for skipped windows tests

This commit is contained in:
Clinton Wolfe 2020-12-21 16:10:02 -05:00 committed by GitHub
commit e5b00760c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -147,11 +147,10 @@ class Minitest::Test
skip msg skip msg
end end
# These tests are being worked on. There is an ongoing discussion whether the # These tests are being worked on. These are github issues for them.
# 'bomb' is helpful as it requires rebases of all active community PRs when # Related: https://github.com/inspec/inspec/pull/5063
# we hit it. Context: https://github.com/inspec/inspec/pull/5063
def skip_windows! def skip_windows!
skip_until 2021, 1, 1, "These have never passed" if windows? skip "These have never passed" if windows?
end end
def unmock(&blk) def unmock(&blk)