olamy commented on code in PR #3312:
URL: https://github.com/apache/maven-surefire/pull/3312#discussion_r2902645051
##########
surefire-api/src/main/java/org/apache/maven/surefire/api/report/CategorizedReportEntry.java:
##########
@@ -155,6 +155,14 @@ public String getNameWithGroup() {
public String getReportNameWithGroup() {
String sourceText = getSourceText();
+ if (isBlank(sourceText)) {
+ sourceText = getName();
+ }
+
+ if (isBlank(sourceText)) {
+ sourceText = getSourceName();
+ }
Review Comment:
So I have removed the fix and disabled this test again to keep backward
compat :)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]