Fokko commented on code in PR #8558:
URL: https://github.com/apache/iceberg/pull/8558#discussion_r1334539263
##########
python/tests/catalog/test_base.py:
##########
@@ -598,3 +598,8 @@ def test_add_column_with_statement(catalog:
InMemoryCatalog) -> None:
schema_id=0,
identifier_field_ids=[],
)
+
+
+def test_catalog_repr(catalog: InMemoryCatalog) -> None:
+ s = repr(catalog)
+ assert s == "test.in.memory.catalog (<class 'test_base.InMemoryCatalog'>)"
Review Comment:
```suggestion
assert s == "test.in.memory.catalog (<class
'test_base.InMemoryCatalog'>)"
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]