1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00

Revert changes to tx-list-items.json, and to mock getTransactionCount method in tx-list-items integration test.

This commit is contained in:
Dan Miller 2018-08-27 17:07:01 -02:30
parent c0e97d1739
commit 952edf695c
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -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) {