Skip to content

Commit dbd34ea

Browse files
author
LUKMANul
committed
Style(test): Final import cleanup for lint compliance
Removed trailing comments on import statements and ensured correct ordering (regular before static) in DeterministicQuickSelectTest.java to pass the project's formatting checks.
1 parent 7d02660 commit dbd34ea

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/java/com/thealgorithms/divideandconquer/DeterministicQuickSelectTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.thealgorithms.divideandconquer;
22

3-
import org.junit.jupiter.api.Test; // Regular imports come first
3+
import org.junit.jupiter.api.Test;
44

55
import static org.junit.jupiter.api.Assertions.assertEquals;
66
import static org.junit.jupiter.api.Assertions.assertThrows;
@@ -26,4 +26,3 @@ public void testInvalidInputs() {
2626
assertThrows(IllegalArgumentException.class, () -> QuickSelectMedianOfMedians.quickSelect(new int[] {}, 0));
2727
}
2828
}
29-

0 commit comments

Comments
 (0)