diff --git a/tests/cypress/ui/hello-world.cy.ts b/tests/cypress/ui/hello-world.cy.ts index d09d10eea..31597c681 100644 --- a/tests/cypress/ui/hello-world.cy.ts +++ b/tests/cypress/ui/hello-world.cy.ts @@ -7,6 +7,6 @@ describe("Test TaskExecutor API", () => { cy.get("#PAYMENT_NETWORK").clear().type(Cypress.env("PAYMENT_NETWORK")); cy.get("#echo").click(); cy.get("#results").should("include.text", "Hello Golem", { timeout: 60000 }); - cy.get("#results").should("include.text", "Finalized leasing process", { timeout: 10000 }); + cy.get("#results").should("include.text", "Finalized renting process", { timeout: 10000 }); }); });