From e9d0707425048c9091dc6a9e26415ab796e2d6f8 Mon Sep 17 00:00:00 2001 From: Jinghua Yao Date: Fri, 29 Oct 2021 09:17:10 -0700 Subject: [PATCH] fix lint after modified --- .../cypress/integration/dashboard/nativeFilters.test.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/superset-frontend/cypress-base/cypress/integration/dashboard/nativeFilters.test.ts b/superset-frontend/cypress-base/cypress/integration/dashboard/nativeFilters.test.ts index 1782ef7c3d377..35e3f013c9f58 100644 --- a/superset-frontend/cypress-base/cypress/integration/dashboard/nativeFilters.test.ts +++ b/superset-frontend/cypress-base/cypress/integration/dashboard/nativeFilters.test.ts @@ -133,8 +133,7 @@ describe('Nativefilters Sanity test', () => { cy.get(nativeFilters.modal.container).should('not.exist'); }); it('User can delete a native filter', () => { - cy.get(nativeFilters.createFilterButton) - .click({ force: true }); + cy.get(nativeFilters.createFilterButton).click({ force: true }); cy.get(nativeFilters.modal.container).should('be.visible'); cy.get(nativeFilters.filtersList.removeIcon).first().click();