wildmatch test: remove redundant duplicate test
Remove a test line that's exactly the same as the preceding line. This was brought in in commit feabcc173b ("Integrate wildmatch to git", 2012-10-15), these tests are originally copied from rsync.git, but the duplicate line was never present there, so must have just snuck in during integration with git by accident. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Ævar Arnfjörð Bjarmason committed
May 26, 2017 at 20:56 UTC
44e2ff09cef17eb8b25ceee3a950d88dbdd19252
1 file changed
-1
t/t3070-wildmatch.sh
-1
@@ -135,7 +135,6 @@ match 1 x '5' '[[:xdigit:]]'
135
match 1 x 'f' '[[:xdigit:]]'
136
match 1 x 'D' '[[:xdigit:]]'
137
match 1 x '_' '[[:alnum:][:alpha:][:blank:][:cntrl:][:digit:][:graph:][:lower:][:print:][:punct:][:space:][:upper:][:xdigit:]]'
138
-match 1 x '_' '[[:alnum:][:alpha:][:blank:][:cntrl:][:digit:][:graph:][:lower:][:print:][:punct:][:space:][:upper:][:xdigit:]]'
138
match 1 x '.' '[^[:alnum:][:alpha:][:blank:][:cntrl:][:digit:][:lower:][:space:][:upper:][:xdigit:]]'
139
match 1 x '5' '[a-c[:digit:]x-z]'
140
match 1 x 'b' '[a-c[:digit:]x-z]'