1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-10-31 17:25:58 +01:00

sinttest: only append subdescriptions if there are any

This commit is contained in:
Florian Schmaus 2020-04-12 22:17:12 +02:00
parent 268425854a
commit 2b41a67028

View file

@ -746,8 +746,10 @@ public class SmackIntegrationTestFramework {
.append(method.getName())
.append(" (")
.append(testType.name());
if (subdescriptons != null) {
sb.append(", ");
StringUtils.appendTo(Arrays.asList(subdescriptons), sb);
}
sb.append(')');
stringCache = sb.toString();