Skip to content

Commit f9d7f79

Browse files
committed
Fix
1 parent fbcea8f commit f9d7f79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/thealgorithms/datastructures/stacks/StackArrayListTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ void testMultipleMakeEmptyCalls() {
100100
stack.makeEmpty();
101101
Assertions.assertTrue(stack.isEmpty());
102102

103-
stack.makeEmpty(); // Call makeEmpty again
103+
stack.makeEmpty();
104104
Assertions.assertTrue(stack.isEmpty());
105105
Assertions.assertEquals(0, stack.size());
106106
}

0 commit comments

Comments
 (0)