syun64 commented on code in PR #330: URL: https://github.com/apache/iceberg-python/pull/330#discussion_r1598837560
########## tests/table/test_init.py: ########## @@ -1125,3 +1128,122 @@ def test_serialize_commit_table_request() -> None: deserialized_request = CommitTableRequest.model_validate_json(request.model_dump_json()) assert request == deserialized_request + + +def test_non_commit_failure_retry() -> None: + class CustomException(Exception): + pass + + class TestTableCommitRetiesCustomError: Review Comment: typo: ```suggestion class TestTableCommitRetriesCustomError: ``` -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org