diff --git a/superset-frontend/cypress-base/cypress/e2e/dashboard/drilltodetail.test.ts b/superset-frontend/cypress-base/cypress/e2e/dashboard/drilltodetail.test.ts index 519f05084188a..2b3b487e3cede 100644 --- a/superset-frontend/cypress-base/cypress/e2e/dashboard/drilltodetail.test.ts +++ b/superset-frontend/cypress-base/cypress/e2e/dashboard/drilltodetail.test.ts @@ -186,13 +186,13 @@ describe('Drill to detail modal', () => { cy.on('uncaught:exception', () => false); cy.wait('@samples'); cy.get('.virtual-table-cell').should($rows => { - expect($rows).to.contain('Cheryl'); + expect($rows).to.contain('Margaret'); }); // verify scroll top on pagination cy.getBySelLike('Number-modal').find('.virtual-grid').scrollTo(0, 200); - cy.get('.virtual-grid').contains('Juan').should('not.be.visible'); + cy.get('.virtual-grid').contains('Kim').should('not.be.visible'); cy.get('.ant-pagination-item').eq(0).click();