Skip to content

Commit

Permalink
chore: Change get_table_names/get_view_names return type (apache#22085)
Browse files Browse the repository at this point in the history
  • Loading branch information
john-bodley authored and diegomedina248 committed Dec 3, 2022
1 parent 9c06aed commit fc8fae0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration_tests/db_engine_specs/presto_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def test_get_view_names_without_schema(self):
).strip(),
{},
)
assert result == ["a", "d"]
assert result == {"a", "d"}

def verify_presto_column(self, column, expected_results):
inspector = mock.Mock()
Expand Down

0 comments on commit fc8fae0

Please sign in to comment.