Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable quidem shadowing for decoupled testcases #16431

Merged
merged 11 commits into from
May 23, 2024
Prev Previous commit
Next Next commit
remove unnecessary \\
  • Loading branch information
kgyrtkirk committed May 14, 2024
commit 3132c12781c6ea99f6d462081ad9c7d9c1a6a9bf
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ private void setConfig(ExtensionContext context)
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 {
Expand Down