GH-65 - Reduced indentation of Spring Bean types in test execution log output.

This commit is contained in:
Oliver Drotbohm
2022-11-11 14:04:39 +01:00
parent dc065653e5
commit 62ac231ce4

View File

@@ -216,7 +216,7 @@ class Classes implements DescribedIterable<JavaClass> {
? type.getName().replace(basePackage, "") //
: type.getName();
return String.format(" %s %s", prefix, name);
return String.format("%s %s", prefix, name);
}
private static class SameClass extends DescribedPredicate<JavaClass> {