Skip to content

Commit 10ed527

Browse files
authored
Update CircularDoublyLinkedListTest.java
lint issue fix
1 parent ec44bf1 commit 10ed527

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ public void testSingleElement() {
7676

7777
@Test
7878
public void testNullAppend() {
79-
assertThrows(NullPointerException.class, () -> list.append(null),
80-
"Appending null should throw NullPointerException.");
79+
assertThrows(NullPointerException.class, () -> list.append(null), "Appending null should throw NullPointerException.");
8180
}
8281
}

0 commit comments

Comments
 (0)