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

console.log -> assert.equal

This commit is contained in:
Thomas 2018-05-09 01:58:43 -07:00
parent 9a1661918f
commit f441153211

View File

@ -24,7 +24,7 @@ describe('Account Import Strategies', function () {
it('imports json string and password to return a private key', async function () {
const fileContentsPassword = 'password1'
const importJson = await accountImporter.importAccount('JSON File', [ json, fileContentsPassword])
console.log(importJson)
assert.equal(importJson, '0x5733876abe94146069ce8bcbabbde2677f2e35fa33e875e92041ed2ac87e5bc7')
})
})