Skip to content

Commit 3dce7f0

Browse files
committed
Remove assertions for minValue and maxValue in empty list test
1 parent 028727f commit 3dce7f0

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/test/java/com/thealgorithms/datastructures/lists/SortedLinkedListTest.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@ public void testEmptyList() {
6262
assertEquals("", list.toString());
6363
assertFalse(list.delete(5));
6464
assertFalse(list.search(5));
65-
assertEquals(0, list.minValue());
66-
assertEquals(0, list.maxValue());
6765
}
6866
@Test
6967
public void testIsEmpty_onEmptyList() {

0 commit comments

Comments
 (0)