From de922f3ea0c91797ca9177247bd93367518af6d3 Mon Sep 17 00:00:00 2001 From: Denis Pushkarev Date: Thu, 18 Feb 2021 18:09:04 +0700 Subject: [PATCH] fix previous commit --- tests/tests/esnext.map.update.js | 1 + tests/tests/esnext.map.upsert.js | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests/esnext.map.update.js b/tests/tests/esnext.map.update.js index ac353c1c11b5..d0c28ea09aa1 100644 --- a/tests/tests/esnext.map.update.js +++ b/tests/tests/esnext.map.update.js @@ -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'); diff --git a/tests/tests/esnext.map.upsert.js b/tests/tests/esnext.map.upsert.js index 5c8481e2d611..90110758f59e 100644 --- a/tests/tests/esnext.map.upsert.js +++ b/tests/tests/esnext.map.upsert.js @@ -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');