From d27ce6a942e844e4e750b109df4b0ff3ff842fe8 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Tue, 23 Sep 2025 10:55:20 -0700 Subject: [PATCH] Specify strict equality in timeout test. --- test/test.lock-unlock.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.lock-unlock.mjs b/test/test.lock-unlock.mjs index 7f99844..f87f88f 100644 --- a/test/test.lock-unlock.mjs +++ b/test/test.lock-unlock.mjs @@ -151,8 +151,8 @@ await Promise.all([ setTimeout(async () => { // should still be unlocked from account() reset and not initial unlock assert.equal(wallet.isLocked, false) - assert.ok(await wallet.verify(NANO_TEST_VECTORS.MNEMONIC)) - assert.ok(await wallet.verify(NANO_TEST_VECTORS.BIP39_SEED)) + assert.equal(await wallet.verify(NANO_TEST_VECTORS.MNEMONIC), true) + assert.equal(await wallet.verify(NANO_TEST_VECTORS.BIP39_SEED), true) resolve(null) }, 60000) }) -- 2.47.3