diff options
author | Dan Miller <danjm.com@gmail.com> | 2018-08-28 03:37:01 +0800 |
---|---|---|
committer | Dan Miller <danjm.com@gmail.com> | 2018-08-28 03:37:01 +0800 |
commit | 952edf695c167385e9d864c45bd889219c456e78 (patch) | |
tree | b7c7de28c4d9f68de01fdd02d725b812912a22d6 /test | |
parent | c0e97d17393c9ce5024af8626c1bafc5d5b4efe4 (diff) | |
download | tangerine-wallet-browser-952edf695c167385e9d864c45bd889219c456e78.tar tangerine-wallet-browser-952edf695c167385e9d864c45bd889219c456e78.tar.gz tangerine-wallet-browser-952edf695c167385e9d864c45bd889219c456e78.tar.bz2 tangerine-wallet-browser-952edf695c167385e9d864c45bd889219c456e78.tar.lz tangerine-wallet-browser-952edf695c167385e9d864c45bd889219c456e78.tar.xz tangerine-wallet-browser-952edf695c167385e9d864c45bd889219c456e78.tar.zst tangerine-wallet-browser-952edf695c167385e9d864c45bd889219c456e78.zip |
Revert changes to tx-list-items.json, and to mock getTransactionCount method in tx-list-items integration test.
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 a29a668ca..7572d1629 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, '0x0') + cb(null, '0x3') } async function runTxListItemsTest (assert, done) { |