X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/261201611113224f4a61b3979f6cd9992c4aa6c6..4b75b09d1c75d6796e75efc55e7b06917834b63e:/cypress/integration/project.spec.js diff --git a/cypress/integration/project.spec.js b/cypress/integration/project.spec.js index 96e73bc1..0017e416 100644 --- a/cypress/integration/project.spec.js +++ b/cypress/integration/project.spec.js @@ -201,8 +201,7 @@ describe('Project tests', function() { name: `Test root project ${Math.floor(Math.random() * 999999)}`, group_class: 'project', }).as('testProject1').then((testProject1) => { - - cy.shareWith(adminUser.token, activeUser.user.uuid, testCollection2.uuid, 'can_write'); + cy.shareWith(adminUser.token, activeUser.user.uuid, testProject1.uuid, 'can_write'); }); cy.getAll('@testProject1').then(function([testProject1]) { @@ -257,7 +256,7 @@ describe('Project tests', function() { cy.get('td').contains(uuid).should('exist'); - cy.get('td').contains('Active User').should('exist'); + cy.get('td').contains(activeUser.user.uuid).should('exist'); }); }); });