summaryrefslogtreecommitdiff
path: root/benchmark/assert
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/assert')
-rw-r--r--benchmark/assert/deepequal-typedarrays.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/benchmark/assert/deepequal-typedarrays.js b/benchmark/assert/deepequal-typedarrays.js
index 50e6e525b2..c4d8f434bf 100644
--- a/benchmark/assert/deepequal-typedarrays.js
+++ b/benchmark/assert/deepequal-typedarrays.js
@@ -25,6 +25,8 @@ const bench = common.createBenchmark(main, {
});
function main({ type, n, len, method }) {
+ if (!method)
+ method = 'deepEqual';
const clazz = global[type];
const actual = new clazz(len);
const expected = new clazz(len);
@@ -32,8 +34,7 @@ function main({ type, n, len, method }) {
const wrongIndex = Math.floor(len / 2);
expectedWrong[wrongIndex] = 123;
- // eslint-disable-next-line no-restricted-properties
- const fn = method !== '' ? assert[method] : assert.deepEqual;
+ const fn = assert[method];
const value2 = method.includes('not') ? expectedWrong : expected;
bench.start();