diff options
author | bakaoh <tatattai@gmail.com> | 2018-10-10 21:20:37 +0800 |
---|---|---|
committer | Whymarrh Whitby <whymarrh.whitby@gmail.com> | 2018-10-10 21:20:37 +0800 |
commit | 63c61c52eb3179816c330f4f6342f1142fb0009a (patch) | |
tree | e13cffd489ed4b90df03046be0c2567d3991cf16 /test | |
parent | 999a599a78ce742a209d37bf831b89a96e6cc3e5 (diff) | |
download | tangerine-wallet-browser-63c61c52eb3179816c330f4f6342f1142fb0009a.tar tangerine-wallet-browser-63c61c52eb3179816c330f4f6342f1142fb0009a.tar.gz tangerine-wallet-browser-63c61c52eb3179816c330f4f6342f1142fb0009a.tar.bz2 tangerine-wallet-browser-63c61c52eb3179816c330f4f6342f1142fb0009a.tar.lz tangerine-wallet-browser-63c61c52eb3179816c330f4f6342f1142fb0009a.tar.xz tangerine-wallet-browser-63c61c52eb3179816c330f4f6342f1142fb0009a.tar.zst tangerine-wallet-browser-63c61c52eb3179816c330f4f6342f1142fb0009a.zip |
Make all addresses EIP-55 compliant (#5379)
* Make all addresses EIP-55 compliant
* Checksum autocompleted address but not during input
Diffstat (limited to 'test')
-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 7f3c114e4..ac1cc2e14 100644 --- a/test/integration/lib/send-new-ui.js +++ b/test/integration/lib/send-new-ui.js @@ -94,7 +94,7 @@ async function runSendFlowTest (assert, done) { sendToDropdownList.children()[2].click() const sendToAccountAddress = sendToFieldInput.val() - assert.equal(sendToAccountAddress, '0x2f8d4a878cfa04a6e60d46362f5644deab66572d', 'send to dropdown selects the correct address') + assert.equal(sendToAccountAddress, '0x2f8D4a878cFA04A6E60D46362f5644DeAb66572D', 'send to dropdown selects the correct address') const sendAmountField = await queryAsync($, '.send-v2__form-row:eq(2)') sendAmountField.find('.currency-display')[0].click() |