diff options
author | Thomas <thomas.b.huang@gmail.com> | 2018-05-09 16:58:43 +0800 |
---|---|---|
committer | Thomas <thomas.b.huang@gmail.com> | 2018-05-09 16:58:43 +0800 |
commit | f441153211c7920573f8bfb699bfda1b6de7efe9 (patch) | |
tree | bbfeb7098997244ce7e8ce28e896faa2dfb6bb6e | |
parent | 9a1661918f19a258c22d2c61b7ea972f9640667d (diff) | |
download | tangerine-wallet-browser-f441153211c7920573f8bfb699bfda1b6de7efe9.tar tangerine-wallet-browser-f441153211c7920573f8bfb699bfda1b6de7efe9.tar.gz tangerine-wallet-browser-f441153211c7920573f8bfb699bfda1b6de7efe9.tar.bz2 tangerine-wallet-browser-f441153211c7920573f8bfb699bfda1b6de7efe9.tar.lz tangerine-wallet-browser-f441153211c7920573f8bfb699bfda1b6de7efe9.tar.xz tangerine-wallet-browser-f441153211c7920573f8bfb699bfda1b6de7efe9.tar.zst tangerine-wallet-browser-f441153211c7920573f8bfb699bfda1b6de7efe9.zip |
console.log -> assert.equal
-rw-r--r-- | test/unit/account-import-strategies.spec.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/account-import-strategies.spec.js b/test/unit/account-import-strategies.spec.js index e0417299a..acc39c88c 100644 --- a/test/unit/account-import-strategies.spec.js +++ b/test/unit/account-import-strategies.spec.js @@ -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') }) }) |