Skip to content

Commit d32ce80

Browse files
author
ptimizeroracle
committed
Fix misleading comment in NaN upper-bound regression test
1 parent 3017c0d commit d32ce80

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/expressions/test_evaluator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1362,8 +1362,8 @@ def test_strict_not_equal_and_not_in_with_mixed_nans_and_matching_bounds(field_t
13621362
def test_strict_not_in_with_nan_upper_bound(field_type: PrimitiveType) -> None:
13631363
schema = Schema(NestedField(1, "x", field_type, required=False))
13641364
# Column contains {1.0, NaN}: min is 1.0, max is NaN (NaN sorts greatest).
1365-
# No NaN stats are present, but the row 1.0 is in the literal set, so the
1366-
# file cannot be proven to fully match NotIn.
1365+
# The non-NaN row 1.0 is in the literal set, so the file cannot be proven
1366+
# to fully match NotIn, even though the NaN count is known.
13671367
data_file = DataFile.from_args(
13681368
file_path="file.parquet",
13691369
file_format=FileFormat.PARQUET,

0 commit comments

Comments
 (0)