Skip to content

Commit 75a7741

Browse files
committed
refactor: fix checkstyle
1 parent 03a705f commit 75a7741

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/thealgorithms/others/TwoPointersTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ void testPairExistsAtEdges() {
7373
}
7474

7575
@Test
76-
void isPairedSum_shouldThrowException_whenArrayIsNull() {
76+
void isPairedSumShouldThrowExceptionWhenArrayIsNull() {
7777
IllegalArgumentException exception = assertThrows(IllegalArgumentException.class, () -> TwoPointers.isPairedSum(null, 10));
7878
assertEquals("Input array must not be null.", exception.getMessage());
7979
}

0 commit comments

Comments
 (0)