diff options
author | kumavis <kumavis@users.noreply.github.com> | 2018-06-19 02:54:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-19 02:54:26 +0800 |
commit | 62df4463859bc6836608ecb0478da67456f15e73 (patch) | |
tree | ff2aa786ff4b9afa96bea11d0d90382d75312821 /test/integration/lib/send-new-ui.js | |
parent | 9a7f363c2a8dcec041569c59e1b1a7c485515a33 (diff) | |
parent | 0c8318b02a5ccb11f5de43a8c9894873e29c2401 (diff) | |
download | tangerine-wallet-browser-62df4463859bc6836608ecb0478da67456f15e73.tar tangerine-wallet-browser-62df4463859bc6836608ecb0478da67456f15e73.tar.gz tangerine-wallet-browser-62df4463859bc6836608ecb0478da67456f15e73.tar.bz2 tangerine-wallet-browser-62df4463859bc6836608ecb0478da67456f15e73.tar.lz tangerine-wallet-browser-62df4463859bc6836608ecb0478da67456f15e73.tar.xz tangerine-wallet-browser-62df4463859bc6836608ecb0478da67456f15e73.tar.zst tangerine-wallet-browser-62df4463859bc6836608ecb0478da67456f15e73.zip |
Merge pull request #4584 from MetaMask/fix-send-token
Add hex-prefix to gas estimate result
Diffstat (limited to 'test/integration/lib/send-new-ui.js')
-rw-r--r-- | test/integration/lib/send-new-ui.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/lib/send-new-ui.js b/test/integration/lib/send-new-ui.js index 4d2ea2ea4..72e4a8cb1 100644 --- a/test/integration/lib/send-new-ui.js +++ b/test/integration/lib/send-new-ui.js @@ -117,12 +117,12 @@ 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.000198264', + '0.000021', 'send gas field should show estimated gas total' ) assert.equal( sendGasField.find('.currency-display__converted-value')[0].textContent, - '$0.24 USD', + '$0.03 USD', 'send gas field should show estimated gas total converted to USD' ) |