Skip to content

Commit 79ac382

Browse files
committed
improve test title
1 parent 6c5bba7 commit 79ac382

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/_DataStructures_/Trees/BinaryTree/bottom-view-binary-tree/BottomViewBinaryTree.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ describe('Bottom View Binary Tree', () => {
88
btree = new BinaryTree([1, 2, 3, 4, 5, 6]);
99
});
1010

11-
it('Determines the bottom view of a binary tree', () => {
11+
it('Should determine the bottom view of a binary tree', () => {
1212
expect(bottomView(btree)).toEqual([6, 2, 3, 4]);
1313
});
14-
it('handles null binary tree', () => {
14+
it('Should handle null binary tree', () => {
1515
expect(bottomView(null)).toEqual([]);
1616
});
1717
});

0 commit comments

Comments
 (0)