Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 79ac382

Browse files
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‎

Lines changed: 2 additions & 2 deletions
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)

AltStyle によって変換されたページ (->オリジナル) /