remove unnecessary \\

This commit is contained in:
Zoltan Haindrich 2024-05-14 07:36:07 +00:00
parent e36c46a85a
commit 3132c12781
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@ public class SqlTestFrameworkConfig
public String buildTestCaseName(ExtensionContext context)
{
List<String> names = new ArrayList<String>();
Pattern pattern = Pattern.compile("\\([^\\)]*\\)");
Pattern pattern = Pattern.compile("\\([^)]*\\)");
// this will add all name pieces - except the "last" which would be the
// Class level name
do {