Skip to content

Commit 81d408f

Browse files
author
Alex Klymenko
committed
refactor: fix redundant whitespace
1 parent 3b1e3fb commit 81d408f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/test/java/com/thealgorithms/datastructures/dynamicarray/DynamicArrayTest.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ public void testGetElement() {
2727
assertEquals("Bob", array.get(1));
2828
}
2929

30-
3130
@Test
3231
public void testGetInvalidIndex() {
3332
assertThrows(IndexOutOfBoundsException.class, () -> array.get(-1));
@@ -86,7 +85,6 @@ public void testPutAndDynamicCapacity() {
8685
assertEquals(3, array.getSize()); // Size should be 3 due to index 2
8786
}
8887

89-
9088
@Test
9189
public void testRemoveElement() {
9290
array.add("Alice");

0 commit comments

Comments
 (0)