1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Updating Secret Recovery code -> Secret Recovery Phrase (Backup notice) (#11338)

* Updating Secret Recovery code -> Secret Recovery Phrase (Backup notice)

* Updating expected text for e2e test
This commit is contained in:
ryanml 2021-06-17 11:43:25 -07:00 committed by GitHub
parent 64835b1457
commit 76f25eef81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -229,7 +229,7 @@
"message": "This secret code is required to recover your wallet in case you lose your device, forget your password, have to re-install MetaMask, or want to access your wallet on another device." "message": "This secret code is required to recover your wallet in case you lose your device, forget your password, have to re-install MetaMask, or want to access your wallet on another device."
}, },
"backupApprovalNotice": { "backupApprovalNotice": {
"message": "Backup your Secret Recovery code to keep your wallet and funds secure." "message": "Backup your Secret Recovery Phrase to keep your wallet and funds secure."
}, },
"backupNow": { "backupNow": {
"message": "Backup now" "message": "Backup now"

View File

@ -122,7 +122,7 @@ describe('Incremental Security', function () {
// should show a backup reminder // should show a backup reminder
const backupReminder = await driver.findElements({ const backupReminder = await driver.findElements({
xpath: xpath:
"//div[contains(@class, 'home-notification__text') and contains(text(), 'Backup your Secret Recovery code to keep your wallet and funds secure')]", "//div[contains(@class, 'home-notification__text') and contains(text(), 'Backup your Secret Recovery Phrase to keep your wallet and funds secure')]",
}); });
assert.equal(backupReminder.length, 1); assert.equal(backupReminder.length, 1);