diff --git a/superset-frontend/cypress-base/cypress/integration/explore/control.test.ts b/superset-frontend/cypress-base/cypress/integration/explore/control.test.ts index 793ae9bb628c2..f447780e2b2b6 100644 --- a/superset-frontend/cypress-base/cypress/integration/explore/control.test.ts +++ b/superset-frontend/cypress-base/cypress/integration/explore/control.test.ts @@ -154,7 +154,7 @@ describe('Test datatable', () => { }); it('Data Pane opens and loads results', () => { cy.contains('Results').click(); - cy.get('[data-test="row-count-label"]').contains('44 rows'); + cy.get('[data-test="row-count-label"]').contains('26 rows'); cy.get('.ant-empty-description').should('not.exist'); }); it('Datapane loads view samples', () => { diff --git a/superset/examples/birth_names.py b/superset/examples/birth_names.py index 9675d297b9dc6..2c68ce5beb137 100644 --- a/superset/examples/birth_names.py +++ b/superset/examples/birth_names.py @@ -419,8 +419,7 @@ def create_slices(tbl: SqlaTable) -> Tuple[List[Slice], List[Slice]]: params=get_slice_json( defaults, groupby=["ds"], - since="1950-01-01", - until="2020-01-01", + time_range="1983 : 2023", viz_type="table", metrics=metrics, ),