diff options
author | kumavis <aaron@kumavis.me> | 2018-05-29 07:00:35 +0800 |
---|---|---|
committer | kumavis <aaron@kumavis.me> | 2018-05-29 07:00:35 +0800 |
commit | 31f47a7a426fc623a9b760127f802983b497ff77 (patch) | |
tree | 01444e8d83fdabe313fb0714cce15c1bbd48ee5f | |
parent | 686d5cf825b8f6312c351103d5cae15af1ff9b8e (diff) | |
download | tangerine-wallet-browser-31f47a7a426fc623a9b760127f802983b497ff77.tar.gz tangerine-wallet-browser-31f47a7a426fc623a9b760127f802983b497ff77.tar.zst tangerine-wallet-browser-31f47a7a426fc623a9b760127f802983b497ff77.zip |
test - unit - pending-tx-tracker - update method name
-rw-r--r-- | test/unit/app/controllers/transactions/pending-tx-test.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/app/controllers/transactions/pending-tx-test.js b/test/unit/app/controllers/transactions/pending-tx-test.js index f06f1c0dd..f0096dadd 100644 --- a/test/unit/app/controllers/transactions/pending-tx-test.js +++ b/test/unit/app/controllers/transactions/pending-tx-test.js @@ -134,14 +134,14 @@ describe('PendingTransactionTracker', function () { }) }) - it('should warp all txMeta\'s in #_checkPendingTx', function (done) { + it('should warp all txMeta\'s in #updatePendingTxs', function (done) { pendingTxTracker.getPendingTransactions = () => txList pendingTxTracker._checkPendingTx = (tx) => { tx.resolve(tx) } Promise.all(txList.map((tx) => tx.processed)) .then((txCompletedList) => done()) .catch(done) - pendingTxTracker._checkPendingTxs() + pendingTxTracker.updatePendingTxs() }) }) |