From 88bb0efbef19e3c46f2f12360d0c692e0ffae870 Mon Sep 17 00:00:00 2001 From: Tibor Kollar Date: Fri, 9 Aug 2024 15:44:34 +0200 Subject: [PATCH] fix: remove unnecessary space from test --- cypress/e2e/attributes/check-required-attributes.cy.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cypress/e2e/attributes/check-required-attributes.cy.js b/cypress/e2e/attributes/check-required-attributes.cy.js index 37b28cbce1..7790ed02ae 100644 --- a/cypress/e2e/attributes/check-required-attributes.cy.js +++ b/cypress/e2e/attributes/check-required-attributes.cy.js @@ -21,16 +21,16 @@ describe('Testing disabling enabled attributes', () => { { retries: { runMode: 2, openMode: 2 } }, () => { cy.get( - '.attribute_table_body:first > :nth-child(2) > .q-mt-xs > .q-toggle__inner ' + '.attribute_table_body:first > :nth-child(2) > .q-mt-xs > .q-toggle__inner ' ).click() cy.get( - '.attribute_table_body:first > :nth-child(2) > .q-mt-xs > .q-toggle__inner' + '.attribute_table_body:first > :nth-child(2) > .q-mt-xs > .q-toggle__inner' ).should('be.visible') cy.get( - '.attribute_table_body:first > :nth-child(2) > .q-mt-xs > .q-toggle__inner' + '.attribute_table_body:first > :nth-child(2) > .q-mt-xs > .q-toggle__inner' ).click() cy.contains( - '.attribute_table_body:first > :nth-child(2) > .q-mt-xs > .q-toggle__inner' + '.attribute_table_body:first > :nth-child(2) > .q-mt-xs > .q-toggle__inner' ).should('not.exist') } )