From dcf96a9429c4d220ac704e5faddc886cdf266ac8 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Mon, 22 Sep 2025 13:01:43 -0700 Subject: [PATCH] Fix map size property. --- test/perf.account.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/perf.account.mjs b/test/perf.account.mjs index 3f5880e..cc77c64 100644 --- a/test/perf.account.mjs +++ b/test/perf.account.mjs @@ -29,7 +29,7 @@ await Promise.all([ const end = performance.now() console.log(`Total: ${end - start} ms`) console.log(`Average: ${(end - start) / COUNT} ms`) - assert.equal(accounts.length, COUNT) + assert.equal(accounts.size, COUNT) await wallet.destroy() }) @@ -43,7 +43,7 @@ await Promise.all([ const end = performance.now() console.log(`Total: ${end - start} ms`) console.log(`Average: ${(end - start) / COUNT} ms`) - assert.equal(accounts.length, COUNT) + assert.equal(accounts.size, COUNT) await wallet.destroy() }) -- 2.47.3