From 829ab285f8da9ac55cdd4b2cbf3e4752b3d3624e Mon Sep 17 00:00:00 2001 From: Fede Alonso Date: Mon, 13 Jan 2025 16:58:04 +0100 Subject: [PATCH] Fix: workbenches e2e test. Use Storage Display Name --- .../e2e/dataScienceProjects/workbenches/workbenches.cy.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frontend/src/__tests__/cypress/cypress/tests/e2e/dataScienceProjects/workbenches/workbenches.cy.ts b/frontend/src/__tests__/cypress/cypress/tests/e2e/dataScienceProjects/workbenches/workbenches.cy.ts index 163efadb51..4fa2e30871 100644 --- a/frontend/src/__tests__/cypress/cypress/tests/e2e/dataScienceProjects/workbenches/workbenches.cy.ts +++ b/frontend/src/__tests__/cypress/cypress/tests/e2e/dataScienceProjects/workbenches/workbenches.cy.ts @@ -90,9 +90,7 @@ describe('Workbench and PVSs tests', () => { cy.step(`Check the cluster storage ${PVCDisplayName} is now connected to ${workbenchName}`); projectDetails.findSectionTab('cluster-storages').click(); - // TODO: Bug RHOAIENG-16239 - // const csRow = clusterStorage.getClusterStorageRow(PVCDisplayName); - const csRow = clusterStorage.getClusterStorageRow(PVCName); + const csRow = clusterStorage.getClusterStorageRow(PVCDisplayName); csRow.findConnectedWorkbenches().should('have.text', workbenchName); }, );