Skip to content

Commit

Permalink
removed a few tests that windows didn't like
Browse files Browse the repository at this point in the history
  • Loading branch information
bmatcuk committed Feb 8, 2016
1 parent b848abd commit ec3b4af
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions doublestar_test.go
Expand Up @@ -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},
Expand Down Expand Up @@ -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},
Expand Down
Empty file removed test/a*b
Empty file.
Empty file removed test/a/*
Empty file.

1 comment on commit ec3b4af

@bmatcuk
Copy link
Owner Author

@bmatcuk bmatcuk commented on ec3b4af Feb 8, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixes #5

Please sign in to comment.