Skip to content

Commit

Permalink
nit fix
Browse files Browse the repository at this point in the history
  • Loading branch information
frankiebee committed Apr 25, 2019
1 parent 14a8992 commit 11aae3c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/unit/app/controllers/transactions/pending-tx-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,9 @@ describe('PendingTransactionTracker', function () {
delete providerResultStub['eth_getTransactionCount']
delete providerResultStub['eth_getTransactionByHash']
return done()
} else done(new Error('wrong tx Id'))
} else {
done(new Error('wrong tx Id'))
}
})

pendingTxTracker._checkPendingTx(txMeta).then(() => {
Expand Down

0 comments on commit 11aae3c

Please sign in to comment.