Skip to content

Commit f5aea14

Browse files
author
Mrinal Chauhan
committed
fix: updated code to fix errors
1 parent 4c13c06 commit f5aea14

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/java/com/thealgorithms/strings/ZalgorithmTest.java

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

33
import static org.junit.jupiter.api.Assertions.assertEquals;
4-
54
import java.util.Arrays;
65
import java.util.List;
76
import org.junit.jupiter.api.Test;
@@ -33,7 +32,7 @@ public void testFindPatternOccurrences() {
3332
List<Integer> expected = Arrays.asList(2, 5, 8);
3433
assertEquals(expected, Zalgorithm.findPatternOccurrences(text, pattern));
3534
}
36-
35+
3736
/**
3837
* Test 3:
3938
* Pattern: "aa", Text: "aaaaaa"

0 commit comments

Comments
 (0)