diff options
author | Alexander Tseung <alextsg@gmail.com> | 2018-08-13 00:22:43 +0800 |
---|---|---|
committer | Alexander Tseung <alextsg@gmail.com> | 2018-08-24 07:45:27 +0800 |
commit | a430eed2d89bcadc93bad84859581fb4184ac0f7 (patch) | |
tree | 5f31e1f9bb18d73f28e03ee6cfd02ec0ad82ae66 /test | |
parent | b48a293af059d2ad23fea0af601740888acd3f8b (diff) | |
download | tangerine-wallet-browser-a430eed2d89bcadc93bad84859581fb4184ac0f7.tar.gz tangerine-wallet-browser-a430eed2d89bcadc93bad84859581fb4184ac0f7.tar.zst tangerine-wallet-browser-a430eed2d89bcadc93bad84859581fb4184ac0f7.zip |
Fix integration tests
Diffstat (limited to 'test')
-rw-r--r-- | test/integration/lib/tx-list-items.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/lib/tx-list-items.js b/test/integration/lib/tx-list-items.js index ca0dd76ab..732e14577 100644 --- a/test/integration/lib/tx-list-items.js +++ b/test/integration/lib/tx-list-items.js @@ -16,7 +16,7 @@ QUnit.test('renders list items successfully', (assert) => { global.ethQuery = global.ethQuery || {} global.ethQuery.getTransactionCount = (_, cb) => { - cb(null, '0x3') + cb(null, '0x0') } async function runTxListItemsTest (assert, done) { |