Skip to content

Commit 92a6b5a

Browse files
authored
made changes to minor copy update to LinkedList unit test (knaxus#199)
1 parent ff5e81c commit 92a6b5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_DataStructures_/LinkedList/LinkedList.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe('Data Structures: Linked Lists', () => {
1818
expect(typeof LinkedList.prototype.constructor).toEqual('function');
1919
});
2020

21-
it('Should set the data and next field of a node', () => {
21+
it('Should set the head, tail and size of a LinkedList', () => {
2222
const list = new LinkedList();
2323
expect(list.head).not.toEqual(undefined);
2424
expect(list.head).toEqual(null);

0 commit comments

Comments
 (0)