aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2018-06-19 02:54:26 +0800
committerGitHub <noreply@github.com>2018-06-19 02:54:26 +0800
commit62df4463859bc6836608ecb0478da67456f15e73 (patch)
treeff2aa786ff4b9afa96bea11d0d90382d75312821 /test
parent9a7f363c2a8dcec041569c59e1b1a7c485515a33 (diff)
parent0c8318b02a5ccb11f5de43a8c9894873e29c2401 (diff)
downloadtangerine-wallet-browser-62df4463859bc6836608ecb0478da67456f15e73.tar.gz
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')
-rw-r--r--test/integration/lib/send-new-ui.js4
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'
)