From: Stephen Smith Date: Thu, 22 Sep 2022 20:40:49 +0000 (-0400) Subject: 16073: Update test for removal of doc X-Git-Tag: 2.5.0~31^2~29 X-Git-Url: https://git.arvados.org/arvados-workbench2.git/commitdiff_plain/601bd6545916618687e968ad2acf93a2d1e0d7d4 16073: Update test for removal of doc Arvados-DCO-1.1-Signed-off-by: Stephen Smith --- diff --git a/cypress/integration/process.spec.js b/cypress/integration/process.spec.js index b2942e4d..dd7a20be 100644 --- a/cypress/integration/process.spec.js +++ b/cypress/integration/process.spec.js @@ -749,7 +749,7 @@ describe('Process tests', function() { const verifyIOParameter = (name, label, doc, val, collection, multipleRows) => { cy.get('table tr').contains(name).parents('tr').within(($mainRow) => { - doc && cy.contains(doc); + label && cy.contains(label); if (multipleRows) { cy.get($mainRow).nextUntil('[data-cy="process-io-param"]').as('secondaryRows');