From a8b2ecb0296fffd5dca57cc7e65b4d0cf419f3e0 Mon Sep 17 00:00:00 2001 From: hrwx Date: Mon, 8 Aug 2022 22:06:59 +0100 Subject: [PATCH] chore: set middle name as _Test User for admin (cherry picked from commit d9c3c03522584b86a8c2a3da0185cf55ac931ede) --- cypress/integration/web_form.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cypress/integration/web_form.js b/cypress/integration/web_form.js index 4c99451146..9173bfaeb3 100644 --- a/cypress/integration/web_form.js +++ b/cypress/integration/web_form.js @@ -237,7 +237,7 @@ context("Web Form", () => { cy.get(".web-form-actions a").contains("Edit").click(); - cy.fill_field("last_name", "_Test User"); + cy.fill_field("middle_name", "_Test User"); cy.get(".web-form-actions .btn-primary").click(); cy.url().should("include", "/me"); @@ -249,7 +249,7 @@ context("Web Form", () => { cy.get(".web-form-actions a").contains("Edit").click(); - cy.fill_field("last_name", "_Test User"); + cy.fill_field("middle_name", "_Test User"); cy.get(".btn-next").should("be.visible"); cy.get(".btn-next").click();