Update test to prettier file extension wildcard syntax.
This commit is contained in:
parent
3fd0a3f842
commit
d1da053d2e
|
@ -49,13 +49,13 @@ struct ExtWildcardFilterCase
|
|||
const static std::vector<ExtWildcardFilterCase> ext_wildcard_cases = {
|
||||
{
|
||||
{ "png" },
|
||||
" ( *.png)|*.png",
|
||||
" ( *.png)|*.[pP][nN][gG]",
|
||||
" (*.png)|*.png",
|
||||
" (*.png)|*.[pP][nN][gG]",
|
||||
},
|
||||
{
|
||||
{ "png", "gif" },
|
||||
" ( *.png *.gif)|*.png;*.gif",
|
||||
" ( *.png *.gif)|*.[pP][nN][gG];*.[gG][iI][fF]",
|
||||
" (*.png; *.gif)|*.png;*.gif",
|
||||
" (*.png; *.gif)|*.[pP][nN][gG];*.[gG][iI][fF]",
|
||||
},
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue