Skip to content

Commit

Permalink
Update datasource_tests.py
Browse files Browse the repository at this point in the history
  • Loading branch information
john-bodley authored Aug 2, 2021
1 parent a2b81bd commit c08f541
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration_tests/datasource_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def test_external_metadata_for_virtual_table(self):
@pytest.mark.usefixtures("load_birth_names_dashboard_with_slices")
def test_external_metadata_by_name_for_physical_table(self):
self.login(username="admin")
tbl = self.get_table_by_name("birth_names")
tbl = self.get_table(name="birth_names")
# empty schema need to be represented by undefined
url = (
f"/datasource/external_metadata_by_name/table/"
Expand All @@ -112,7 +112,7 @@ def test_external_metadata_by_name_for_virtual_table(self):
session.add(table)
session.commit()

table = self.get_table_by_name("dummy_sql_table")
table = self.get_table(name="dummy_sql_table")
# empty schema need to be represented by undefined
url = (
f"/datasource/external_metadata_by_name/table/"
Expand Down

0 comments on commit c08f541

Please sign in to comment.