From d571bdbbb3ea315f8b56252185d98ea24132e660 Mon Sep 17 00:00:00 2001 From: Carlos Jimenez <=> Date: Thu, 22 Nov 2018 12:53:11 +0100 Subject: [PATCH] error corrected --- e2e/paths/client-module/04_edit_pay_method.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/paths/client-module/04_edit_pay_method.spec.js b/e2e/paths/client-module/04_edit_pay_method.spec.js index 659fa07bc7..96556f52a0 100644 --- a/e2e/paths/client-module/04_edit_pay_method.spec.js +++ b/e2e/paths/client-module/04_edit_pay_method.spec.js @@ -65,8 +65,8 @@ describe('Client Edit pay method path', () => { it(`should add the IBAN but fail as it requires a BIC code`, async () => { const snackbarMessage = await nightmare .clearInput(selectors.clientPayMethod.IBANInput) - .type(selectors.clientPayMethod.IBANInput, 'ES9121000418450200051332') - .waitForTextInInput(selectors.clientPayMethod.IBANInput, 'ES9121000418450200051332') + .type(selectors.clientPayMethod.IBANInput, 'ES91 2100 0418 4502 0005 1332') + .waitForTextInInput(selectors.clientPayMethod.IBANInput, 'ES91 2100 0418 4502 0005 1332') .waitToClick(selectors.clientPayMethod.clearswiftBicButton) .waitToClick(selectors.clientPayMethod.saveButton) .waitForLastSnackbar();