Skip to content

Commit eac5a0f

Browse files
authored
missed one "Check"
1 parent 21c42c9 commit eac5a0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Data-Structures/Linked-List/test/CircularDoublyLinkedList.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ describe('CircularDoublyLinkedList', () => {
66
* @param {Array} elements - The elements to append.
77
* @returns {CircularDoublyLinkedList} - The created list.
88
*/
9-
function createAndAppend (elements) {
9+
function createAndAppend(elements) {
1010
const list = new CircularDoublyLinkedList()
1111
elements.forEach((element) => list.append(element))
1212
return list
@@ -21,7 +21,7 @@ describe('CircularDoublyLinkedList', () => {
2121
expect(list.toArray()).toEqual([1, 2])
2222
})
2323

24-
it('Check insert', () => {
24+
it('insert', () => {
2525
const list = createAndAppend([1])
2626

2727
list.insert(0, 20)

0 commit comments

Comments
 (0)