Merge pull request #42390 from thaJeztah/skip_defunct_test

pkg/fileutils: TestMatches: remove cases no longer valid for go1.16
This commit is contained in:
Brian Goff 2021-05-20 11:10:46 -07:00 committed by GitHub
commit 328d23f625
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -377,8 +377,6 @@ func TestMatches(t *testing.T) {
if runtime.GOOS != "windows" {
tests = append(tests, []matchesTestCase{
{"a\\*b", "a*b", true},
{"a\\", "a", false},
{"a\\", "a\\", false},
}...)
}