Skip to content

Commit 7c4c656

Browse files
Samuel  TranSamuel  Tran
authored andcommitted
Further cleaned up tree.test for travis ci
1 parent ee03106 commit 7c4c656

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/__tests__/tree.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ describe('Tree unit test', () => {
7070

7171
describe('Adding sibling', () => {
7272
let newTree = new Tree({});
73-
let returnChild = newTree.addChild('stateful', 'child', {}, null, null);
74-
let returnSibling = returnChild.addSibling('stateful', 'child', {}, null, null);
73+
let returnChild = newTree.addChild('stateful', 'child', {}, null);
74+
let returnSibling = returnChild.addSibling('stateful', 'child', {}, null);
7575
it('the tree now has 2 children', () => {
7676
expect(newTree.children.length).toBe(2);
7777
})

0 commit comments

Comments
 (0)