From a9e5564e8d8485741fd09efd994493fb1d8af614 Mon Sep 17 00:00:00 2001 From: kumavis Date: Mon, 14 Aug 2017 19:34:22 -0700 Subject: tx controller - test - fix typo from moved test --- test/unit/tx-controller-test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/unit/tx-controller-test.js b/test/unit/tx-controller-test.js index 38305f658..7bb193242 100644 --- a/test/unit/tx-controller-test.js +++ b/test/unit/tx-controller-test.js @@ -306,9 +306,9 @@ describe('Transaction Controller', function () { txController.addTx(txMeta) const updatedTx = txController.getTx('1') // verify tx was initialized correctly - assert.equal(result.history.length, 1, 'one history item (initial)') - assert.equal(Array.isArray(result.history[0]), false, 'first history item is initial state') - assert.deepEqual(result.history[0], txStateHistoryHelper.snapshotFromTxMeta(updatedTx), 'first history item is initial state') + assert.equal(updatedTx.history.length, 1, 'one history item (initial)') + assert.equal(Array.isArray(updatedTx.history[0]), false, 'first history item is initial state') + assert.deepEqual(updatedTx.history[0], txStateHistoryHelper.snapshotFromTxMeta(updatedTx), 'first history item is initial state') // modify value and updateTx updatedTx.txParams.gasPrice = desiredGasPrice txController.updateTx(updatedTx) -- cgit