diff options
author | Dan <danjm.com@gmail.com> | 2018-05-25 18:31:25 +0800 |
---|---|---|
committer | Dan <danjm.com@gmail.com> | 2018-05-31 07:24:31 +0800 |
commit | 3d597cd1d2bfe74abdb945f8ec3ffe96853ed90a (patch) | |
tree | 35478cf162865db1406ada9286638c552989463c /test/integration | |
parent | 2eddb7b65245b7c11a3928098eea06064b9b22cf (diff) | |
download | tangerine-wallet-browser-3d597cd1d2bfe74abdb945f8ec3ffe96853ed90a.tar.gz tangerine-wallet-browser-3d597cd1d2bfe74abdb945f8ec3ffe96853ed90a.tar.zst tangerine-wallet-browser-3d597cd1d2bfe74abdb945f8ec3ffe96853ed90a.zip |
Fix test to account for greater precision currency display.
Diffstat (limited to 'test/integration')
-rw-r--r-- | test/integration/lib/send-new-ui.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/lib/send-new-ui.js b/test/integration/lib/send-new-ui.js index 3da3f4f95..069b7fedd 100644 --- a/test/integration/lib/send-new-ui.js +++ b/test/integration/lib/send-new-ui.js @@ -117,7 +117,7 @@ async function runSendFlowTest(assert, done) { const sendGasField = await queryAsync($, '.send-v2__gas-fee-display') assert.equal( sendGasField.find('.currency-display__input-wrapper > input').val(), - '0.000198', + '0.000198264', 'send gas field should show estimated gas total' ) assert.equal( |