From d528b48735b7edd4673bfad0a82ddda462d76055 Mon Sep 17 00:00:00 2001
From: jorgep <jorgep@verdnatura.es>
Date: Mon, 10 Mar 2025 16:40:28 +0100
Subject: [PATCH] fix: refs #8581 correct syntax for down arrow key input in
 client balance mandate test

---
 test/cypress/integration/client/clientBalance.spec.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/cypress/integration/client/clientBalance.spec.js b/test/cypress/integration/client/clientBalance.spec.js
index 8f8296264..7a0b99041 100644
--- a/test/cypress/integration/client/clientBalance.spec.js
+++ b/test/cypress/integration/client/clientBalance.spec.js
@@ -10,7 +10,7 @@ describe('Client balance', () => {
     });
     it('Should create a mandate', () => {
         cy.get('.q-page-sticky > div > .q-btn').click();
-        cy.dataCy('paymentBank').type({ arroyDown });
+        cy.dataCy('paymentBank').type('{downArrow}');
         cy.dataCy('paymentAmount').type('100');
         cy.saveCard();
     });