From 97c9eb84e681bad4f7ea7852b103957d3880550a Mon Sep 17 00:00:00 2001 From: kolaente Date: Fri, 1 Aug 2025 16:28:40 +0200 Subject: [PATCH] fix(settings): use correct test assertion (#1217) --- frontend/cypress/e2e/user/settings.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/cypress/e2e/user/settings.spec.ts b/frontend/cypress/e2e/user/settings.spec.ts index 6e73188d4..54f7a7bdb 100644 --- a/frontend/cypress/e2e/user/settings.spec.ts +++ b/frontend/cypress/e2e/user/settings.spec.ts @@ -28,7 +28,7 @@ describe('User Settings', () => { it('Updates the name', () => { cy.visit('/user/settings/general') - cy.get('.general-settings .control input.input') + cy.get('.general-settings input.input') .first() .type('Lorem Ipsum') cy.get('[data-cy="saveGeneralSettings"]')