1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Fixed another lostAccount test

This commit is contained in:
Dan Finlay 2016-12-20 17:29:44 -08:00
parent afcad53ef9
commit b3533f9bf7

View File

@ -44,7 +44,7 @@ QUnit.test('keyringController:submitPassword', function (assert) {
this.keyringController.submitPassword(PASSWORD) this.keyringController.submitPassword(PASSWORD)
.then((state) => { .then((state) => {
assert.ok(state.identities[FIRST_ADDRESS]) assert.ok(state.identities[FIRST_ADDRESS])
assert.equal(state.lostAccounts.length, 0, 'no lost accounts') assert.ok(state.lostAccounts, 'no lost accounts')
done() done()
}) })
}) })