Skip to content

Commit

Permalink
actually use repr instead of str
Browse files Browse the repository at this point in the history
  • Loading branch information
jayceslesar committed Sep 22, 2023
1 parent e6cc3ff commit 56fc522
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tests/catalog/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,5 +601,5 @@ def test_add_column_with_statement(catalog: InMemoryCatalog) -> None:


def test_catalog_repr(catalog: InMemoryCatalog) -> None:
s = str(catalog)
s = catalog.__repr__()
assert s == "test.in.memory.catalog (<class 'test_base.InMemoryCatalog'>)"

0 comments on commit 56fc522

Please sign in to comment.