From 56fc522f87b8c85efe98ec19c5bc4e2bc7301bca Mon Sep 17 00:00:00 2001 From: jayceslesar Date: Fri, 22 Sep 2023 10:55:04 -0400 Subject: [PATCH] actually use repr instead of str --- python/tests/catalog/test_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tests/catalog/test_base.py b/python/tests/catalog/test_base.py index c776c9f25495..a06243c0c04c 100644 --- a/python/tests/catalog/test_base.py +++ b/python/tests/catalog/test_base.py @@ -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 ()" \ No newline at end of file