File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -683,7 +683,7 @@ def data_file_nan() -> DataFile:
683683
684684
685685def test_inclusive_metrics_evaluator_less_than_and_less_than_equal (schema_data_file_nan : Schema , data_file_nan : DataFile ) -> None :
686- for operator in [LessThan , LessThanOrEqual ]: # type: ignore
686+ for operator in [LessThan , LessThanOrEqual ]:
687687 should_read = _InclusiveMetricsEvaluator (schema_data_file_nan , operator ("all_nan" , 1 )).eval (data_file_nan ) # type: ignore[arg-type]
688688 assert not should_read , "Should not match: all nan column doesn't contain number"
689689
@@ -711,7 +711,7 @@ def test_inclusive_metrics_evaluator_less_than_and_less_than_equal(schema_data_f
711711def test_inclusive_metrics_evaluator_greater_than_and_greater_than_equal (
712712 schema_data_file_nan : Schema , data_file_nan : DataFile
713713) -> None :
714- for operator in [GreaterThan , GreaterThanOrEqual ]: # type: ignore
714+ for operator in [GreaterThan , GreaterThanOrEqual ]:
715715 should_read = _InclusiveMetricsEvaluator (schema_data_file_nan , operator ("all_nan" , 1 )).eval (data_file_nan ) # type: ignore[arg-type]
716716 assert not should_read , "Should not match: all nan column doesn't contain number"
717717
You can’t perform that action at this time.
0 commit comments