From 04ff82f880c1efec4f5bc732ff77cda97fa3a18b Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Mon, 20 Jan 2020 11:29:26 +0100 Subject: [PATCH] Cypress test fixed --- cypress/integration/common/steps.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/integration/common/steps.js b/cypress/integration/common/steps.js index 9a5c02d08..44d2ada64 100644 --- a/cypress/integration/common/steps.js +++ b/cypress/integration/common/steps.js @@ -300,7 +300,7 @@ Then( cy.visit(route, { failOnStatusCode: false }); - cy.get(".error").should("contain", message); + cy.get(".error-message").should("contain", message); } );