From: Chris Duncan Date: Sun, 27 Jul 2025 09:21:18 +0000 (-0700) Subject: Fix updated schema for test. X-Git-Tag: v0.10.5~50^2 X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=5c83884981fa684f6c4f74ad08404643af5b8707;p=libnemo.git Fix updated schema for test. --- diff --git a/test/test.import-wallet.mjs b/test/test.import-wallet.mjs index 59f5faf..a7b5dfd 100644 --- a/test/test.import-wallet.mjs +++ b/test/test.import-wallet.mjs @@ -306,7 +306,7 @@ await Promise.all([ const wallet = await Bip44Wallet.fromMnemonic(NANO_TEST_VECTORS.PASSWORD, NANO_TEST_VECTORS.MNEMONIC, NANO_TEST_VECTORS.PASSWORD) const ids = await Bip44Wallet.export() - assert.ok(ids.some(id => id === wallet.id)) + assert.ok(ids['BIP-44'].some(id => `BIP-44_${id}` === wallet.id)) const restored = await Bip44Wallet.restore(wallet.id)