Skip to content

Commit b443f79

Browse files
committed
Fix checkstyle
1 parent a9fdf34 commit b443f79

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

buildtools/src/main/java/org/apache/pulsar/tests/TestNGTestFilter.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
* Maven Surefire includes/excludes files.
4141
*
4242
* This tool parses Java test class files using ByteBuddy to extract TestNG
43-
* @Test annotations and their groups, then generates two files:
43+
* Test annotations and their groups, then generates two files:
4444
* - includes file: Contains test classes/methods that match the specified groups
4545
* - excludes file: Contains test methods to exclude from classes that have matching tests
4646
*
@@ -259,7 +259,9 @@ public static void main(String[] args) {
259259
String excludesOutputFile = "target/surefire-excludes.txt";
260260

261261
if (args.length == 0) {
262-
System.out.println("Usage: TestNGTestFilter <included groups> <testClassDirectory> <includesOutputFile> <excludesOutputFile>");
262+
System.out.println(
263+
"Usage: TestNGTestFilter <included groups> <testClassDirectory> <includesOutputFile> "
264+
+ "<excludesOutputFile>");
263265
System.exit(1);
264266
}
265267

0 commit comments

Comments
 (0)