Skip to content

Commit

Permalink
fix previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Feb 18, 2021
1 parent 1d4b84f commit de922f3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions tests/tests/esnext.map.update.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ QUnit.test('Map#update', assert => {
const { update } = Map.prototype;
assert.isFunction(update);
assert.arity(update, 2);
assert.name(update, 'update');
assert.looksNative(update);
assert.nonEnumerable(Map.prototype, 'update');

Expand Down
1 change: 0 additions & 1 deletion tests/tests/esnext.map.upsert.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ QUnit.test('Map#upsert', assert => {
const { upsert } = Map.prototype;
assert.isFunction(upsert);
assert.arity(upsert, 2);
assert.name(upsert, 'upsert');
assert.looksNative(upsert);
assert.nonEnumerable(Map.prototype, 'upsert');

Expand Down

0 comments on commit de922f3

Please sign in to comment.