diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-12-21 08:11:49 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-12-21 08:11:49 +0800 |
commit | afcad53ef974e557c5dc701d364a88157694464f (patch) | |
tree | 5cffbb98521a22af7b137cc3e111bb19aaaf82c0 /test | |
parent | 11c1004a41a9287c13ef15f28805863aab9fdea9 (diff) | |
download | tangerine-wallet-browser-afcad53ef974e557c5dc701d364a88157694464f.tar tangerine-wallet-browser-afcad53ef974e557c5dc701d364a88157694464f.tar.gz tangerine-wallet-browser-afcad53ef974e557c5dc701d364a88157694464f.tar.bz2 tangerine-wallet-browser-afcad53ef974e557c5dc701d364a88157694464f.tar.lz tangerine-wallet-browser-afcad53ef974e557c5dc701d364a88157694464f.tar.xz tangerine-wallet-browser-afcad53ef974e557c5dc701d364a88157694464f.tar.zst tangerine-wallet-browser-afcad53ef974e557c5dc701d364a88157694464f.zip |
Refine a lostAccount test
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/idStore-migration-test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/idStore-migration-test.js b/test/unit/idStore-migration-test.js index 66dd4683d..8532ac914 100644 --- a/test/unit/idStore-migration-test.js +++ b/test/unit/idStore-migration-test.js @@ -83,7 +83,7 @@ describe('IdentityStore to KeyringController migration', function() { keyringController.configManager.setWallet('something') const state = keyringController.getState() assert(state.isInitialized, 'old vault counted as initialized.') - assert.equal(state.lostAccounts.length, 0, 'no lost accounts') + assert(!state.lostAccounts, 'no lost accounts') }) }) }) |