Skip to content

Commit

Permalink
fixed typo in treap unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
Prakash-Jha-Dev authored and felipernb committed Aug 22, 2018
1 parent dccdcb8 commit 2084c96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/data_structures/treap.js
Expand Up @@ -99,7 +99,7 @@ describe('Treap', () => {
assert.equal(treap.maximum(), 1);
});

it('handles dumplicated elements', () => {
it('handles duplicated elements', () => {
treap.insert(1);
// [1, 1]
assert.equal(treap.size(), 2);
Expand Down

0 comments on commit 2084c96

Please sign in to comment.