aboutsummaryrefslogtreecommitdiffstats
path: root/test/integration/lib/send-new-ui.js
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@users.noreply.github.com>2018-08-23 02:57:19 +0800
committerGitHub <noreply@github.com>2018-08-23 02:57:19 +0800
commit21a6fdc1748424e84d12156552d344c622c03dd1 (patch)
treefeef8ed1dfa9431f6d5ee002c7b3589176392953 /test/integration/lib/send-new-ui.js
parentbabd59a2dc64e15ef2a415e349ef12d5b995e2e7 (diff)
parent7294aede4fc33e950f84147f1b7402675f53398d (diff)
downloadtangerine-wallet-browser-21a6fdc1748424e84d12156552d344c622c03dd1.tar.gz
tangerine-wallet-browser-21a6fdc1748424e84d12156552d344c622c03dd1.tar.zst
tangerine-wallet-browser-21a6fdc1748424e84d12156552d344c622c03dd1.zip
Merge pull request #5111 from MetaMask/sender-to-recipient2
Add new variant for SenderToRecipient component
Diffstat (limited to 'test/integration/lib/send-new-ui.js')
-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 406863ca6..cef1a32d7 100644
--- a/test/integration/lib/send-new-ui.js
+++ b/test/integration/lib/send-new-ui.js
@@ -124,10 +124,10 @@ async function runSendFlowTest (assert, done) {
selectState.val('send edit')
reactTriggerChange(selectState[0])
- const confirmFromName = (await queryAsync($, '.sender-to-recipient__sender-name')).first()
+ const confirmFromName = (await queryAsync($, '.sender-to-recipient__name')).first()
assert.equal(confirmFromName[0].textContent, 'Send Account 4', 'confirm screen should show correct from name')
- const confirmToName = (await queryAsync($, '.sender-to-recipient__recipient-name')).last()
+ const confirmToName = (await queryAsync($, '.sender-to-recipient__name')).last()
assert.equal(confirmToName[0].textContent, 'Send Account 3', 'confirm screen should show correct to name')
const confirmScreenRowFiats = await queryAsync($, '.confirm-detail-row__fiat')