summaryrefslogtreecommitdiff
path: root/web-ui/test/integration/backup_account.spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/test/integration/backup_account.spec.js')
-rw-r--r--web-ui/test/integration/backup_account.spec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web-ui/test/integration/backup_account.spec.js b/web-ui/test/integration/backup_account.spec.js
index 2a37442e..eb247653 100644
--- a/web-ui/test/integration/backup_account.spec.js
+++ b/web-ui/test/integration/backup_account.spec.js
@@ -22,7 +22,7 @@ describe('Backup account email validation', () => {
it('shows error and disables submit button on invalid email', () => {
backupAccountPage.find('input').simulate('change', {target: {value: 'test'}});
- expect(backupAccountPage.find('InputField').props().errorText).toEqual('Your email is invalid');
+ expect(backupAccountPage.find('InputField').props().errorText).toEqual('Please enter a valid email address');
expect(backupAccountPage.find('SubmitButton').props().disabled).toEqual(true);
});