From d1da053d2e0c0250cf21d1fe3740a88efc312d43 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Fri, 17 Jul 2020 21:22:28 +0100 Subject: [PATCH] Update test to prettier file extension wildcard syntax. --- qa/common/test_wildcards_and_files_ext.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/qa/common/test_wildcards_and_files_ext.cpp b/qa/common/test_wildcards_and_files_ext.cpp index fd2a0dbbcf..a04eb363f3 100644 --- a/qa/common/test_wildcards_and_files_ext.cpp +++ b/qa/common/test_wildcards_and_files_ext.cpp @@ -49,13 +49,13 @@ struct ExtWildcardFilterCase const static std::vector 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]", }, };