Skip to content

Commit

Permalink
Assert repr() too
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Feb 25, 2025
1 parent fd6d18e commit e3a20b5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions python/pyarrow/tests/parquet/test_parquet_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,3 +349,7 @@ def test_read_statistics():
assert statistics.is_min_exact
assert statistics.max == 3
assert statistics.is_max_exact
assert repr(statistics) == ("arrow.ArrayStatistics<"
"null_count=1, distinct_count=None, "
"min=-1, is_min_exact=True, "
"max=3, is_max_exact=True>")

0 comments on commit e3a20b5

Please sign in to comment.