From 4e1495220aae8fdcca2dc40d3f6d13dfc83e38b6 Mon Sep 17 00:00:00 2001 From: Stephen Smith Date: Tue, 12 Apr 2022 15:24:17 -0400 Subject: [PATCH] 16068: Fix process panel test Arvados-DCO-1.1-Signed-off-by: Stephen Smith --- cypress/integration/process.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cypress/integration/process.spec.js b/cypress/integration/process.spec.js index 75c318db..f5dfbcd4 100644 --- a/cypress/integration/process.spec.js +++ b/cypress/integration/process.spec.js @@ -95,7 +95,7 @@ describe('Process tests', function() { .then(function(containerRequest) { cy.loginAs(activeUser); cy.goToPath(`/processes/${containerRequest.uuid}`); - cy.get('[data-cy=process-info]').should('contain', crName); + cy.get('[data-cy=process-details]').should('contain', crName); cy.get('[data-cy=process-logs]') .should('contain', 'No logs yet') .and('not.contain', 'hello world'); @@ -191,4 +191,4 @@ describe('Process tests', function() { }); }); }); -}); \ No newline at end of file +}); -- 2.30.2