Skip to content

Commit c3a653e

Browse files
committed
Fix
1 parent dc05bf4 commit c3a653e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ void testNegativeK() {
9797
* Test with null array.
9898
*/
9999
@Test
100+
@SuppressWarnings("NullAway")
100101
void testNullArray() {
101102
long result = MaximumSumOfDistinctSubarraysWithLengthK.maximumSubarraySum(3, (int[]) null);
102103
assertEquals(0L, result);

0 commit comments

Comments
 (0)