From 76f25eef819146e34f25b1edb3a488d1d61d340c Mon Sep 17 00:00:00 2001 From: ryanml Date: Thu, 17 Jun 2021 11:43:25 -0700 Subject: [PATCH] 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 --- app/_locales/en/messages.json | 2 +- test/e2e/tests/incremental-security.spec.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/_locales/en/messages.json b/app/_locales/en/messages.json index fe0dc82f1..ddc5a5e18 100644 --- a/app/_locales/en/messages.json +++ b/app/_locales/en/messages.json @@ -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." }, "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": { "message": "Backup now" diff --git a/test/e2e/tests/incremental-security.spec.js b/test/e2e/tests/incremental-security.spec.js index a07f44c96..185a0d8c0 100644 --- a/test/e2e/tests/incremental-security.spec.js +++ b/test/e2e/tests/incremental-security.spec.js @@ -122,7 +122,7 @@ describe('Incremental Security', function () { // should show a backup reminder const backupReminder = await driver.findElements({ 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);