diff --git a/doublestar_test.go b/doublestar_test.go index c6ec261..dba92b6 100644 --- a/doublestar_test.go +++ b/doublestar_test.go @@ -32,7 +32,6 @@ var matchTests = []MatchTest{ {"ab[^c]", "abc", false, nil, true}, {"ab[^b-d]", "abc", false, nil, true}, {"ab[^e-g]", "abc", true, nil, true}, - {"a\\*b", "a*b", true, nil, true}, {"a\\*b", "ab", false, nil, true}, {"a?b", "a☺b", true, nil, true}, {"a[^a]b", "a☺b", true, nil, true}, @@ -79,7 +78,6 @@ var matchTests = []MatchTest{ {"a/**/c", "a/b/c", true, nil, true}, {"a/**/d", "a/b/c/d", true, nil, true}, {"a/\\**", "a/b/c", false, nil, true}, - {"a/\\**", "a/*", true, nil, true}, {"ab{c,d}", "abc", true, nil, true}, {"ab{c,d,*}", "abcde", true, nil, true}, {"ab{c,d}[", "abcd", false, ErrBadPattern, true}, diff --git a/test/a*b b/test/a*b deleted file mode 100644 index e69de29..0000000 diff --git a/test/a/* b/test/a/* deleted file mode 100644 index e69de29..0000000