Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
betodealmeida committed Aug 8, 2021
1 parent 3bbcc30 commit 7908405
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/integration_tests/import_export_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,10 +329,9 @@ def test_import_1_slice(self):
@pytest.mark.usefixtures("load_world_bank_dashboard_with_slices")
def test_import_2_slices_for_same_table(self):
table_id = self.get_table(name="wb_health_population").id
# table_id != 666, import func will have to find the table
slc_1 = self.create_slice("Import Me 1", ds_id=666, id=10002)
slc_1 = self.create_slice("Import Me 1", ds_id=table_id, id=10002)
slc_id_1 = import_chart(slc_1, None)
slc_2 = self.create_slice("Import Me 2", ds_id=666, id=10003)
slc_2 = self.create_slice("Import Me 2", ds_id=table_id, id=10003)
slc_id_2 = import_chart(slc_2, None)

imported_slc_1 = self.get_slice(slc_id_1)
Expand Down

0 comments on commit 7908405

Please sign in to comment.