diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-12-21 09:29:44 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-12-22 02:49:56 +0800 |
commit | b3533f9bf7bc28988d2f2f280ab6ebc04cf66161 (patch) | |
tree | a4b36405b5ee3079d9f800a0eb9027a1bf0a4fe6 /test | |
parent | afcad53ef974e557c5dc701d364a88157694464f (diff) | |
download | tangerine-wallet-browser-b3533f9bf7bc28988d2f2f280ab6ebc04cf66161.tar tangerine-wallet-browser-b3533f9bf7bc28988d2f2f280ab6ebc04cf66161.tar.gz tangerine-wallet-browser-b3533f9bf7bc28988d2f2f280ab6ebc04cf66161.tar.bz2 tangerine-wallet-browser-b3533f9bf7bc28988d2f2f280ab6ebc04cf66161.tar.lz tangerine-wallet-browser-b3533f9bf7bc28988d2f2f280ab6ebc04cf66161.tar.xz tangerine-wallet-browser-b3533f9bf7bc28988d2f2f280ab6ebc04cf66161.tar.zst tangerine-wallet-browser-b3533f9bf7bc28988d2f2f280ab6ebc04cf66161.zip |
Fixed another lostAccount test
Diffstat (limited to 'test')
-rw-r--r-- | test/integration/lib/keyring-controller-test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/lib/keyring-controller-test.js b/test/integration/lib/keyring-controller-test.js index 666795a6d..4673e65c2 100644 --- a/test/integration/lib/keyring-controller-test.js +++ b/test/integration/lib/keyring-controller-test.js @@ -44,7 +44,7 @@ QUnit.test('keyringController:submitPassword', function (assert) { this.keyringController.submitPassword(PASSWORD) .then((state) => { assert.ok(state.identities[FIRST_ADDRESS]) - assert.equal(state.lostAccounts.length, 0, 'no lost accounts') + assert.ok(state.lostAccounts, 'no lost accounts') done() }) }) |