Skip to content
2 changes: 1 addition & 1 deletion test/test/MyStringStackTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void testPush() {
String o1 = null;
MyStringStack stack = new MyStringStack();
assertTrue (stack.isEmpty());
stack.push (s1);
stack.push (s1);
stack.push (s2);
assertFalse (stack.isEmpty());
}
Expand Down