aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorbrunobar79 <brunobar79@gmail.com>2018-07-18 08:43:32 +0800
committerbrunobar79 <brunobar79@gmail.com>2018-07-18 08:43:32 +0800
commitcb53d5122cac179f430fb015974e80310c96a2f2 (patch)
tree54bb85aa4c618840adeec2513558583b7a62c7b9 /test
parentcb97517b26a7732cbb7c4a9f30f85b5fa596e608 (diff)
parent89911dda170e33d8d9ca2f29f2705ed446d4c0f2 (diff)
downloadtangerine-wallet-browser-cb53d5122cac179f430fb015974e80310c96a2f2.tar
tangerine-wallet-browser-cb53d5122cac179f430fb015974e80310c96a2f2.tar.gz
tangerine-wallet-browser-cb53d5122cac179f430fb015974e80310c96a2f2.tar.bz2
tangerine-wallet-browser-cb53d5122cac179f430fb015974e80310c96a2f2.tar.lz
tangerine-wallet-browser-cb53d5122cac179f430fb015974e80310c96a2f2.tar.xz
tangerine-wallet-browser-cb53d5122cac179f430fb015974e80310c96a2f2.tar.zst
tangerine-wallet-browser-cb53d5122cac179f430fb015974e80310c96a2f2.zip
Merge branch 'develop' of github.com:MetaMask/metamask-extension into initial-trezor-support
Diffstat (limited to 'test')
-rw-r--r--test/integration/lib/tx-list-items.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/lib/tx-list-items.js b/test/integration/lib/tx-list-items.js
index 6b67b1d2e..b7aca44d5 100644
--- a/test/integration/lib/tx-list-items.js
+++ b/test/integration/lib/tx-list-items.js
@@ -31,8 +31,8 @@ async function runTxListItemsTest (assert, done) {
assert.equal($(unapprovedTx).hasClass('tx-list-pending-item-container'), true, 'unapprovedTx has the correct class')
const retryTx = txListItems[1]
- const retryTxLink = await findAsync($(retryTx), '.tx-list-item-retry-link')
- assert.equal(retryTxLink[0].textContent, 'Increase the gas price on your transaction', 'retryTx has expected link')
+ const retryTxLink = await findAsync($(retryTx), '.tx-list-item-retry-container span')
+ assert.equal(retryTxLink[0].textContent, 'Taking too long? Increase the gas price on your transaction', 'retryTx has expected link')
const approvedTx = txListItems[2]
const approvedTxRenderedStatus = await findAsync($(approvedTx), '.tx-list-status')