We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03a705f commit 75a7741Copy full SHA for 75a7741
src/test/java/com/thealgorithms/others/TwoPointersTest.java
@@ -73,7 +73,7 @@ void testPairExistsAtEdges() {
73
}
74
75
@Test
76
- void isPairedSum_shouldThrowException_whenArrayIsNull() {
+ void isPairedSumShouldThrowExceptionWhenArrayIsNull() {
77
IllegalArgumentException exception = assertThrows(IllegalArgumentException.class, () -> TwoPointers.isPairedSum(null, 10));
78
assertEquals("Input array must not be null.", exception.getMessage());
79
0 commit comments