Skip to content

Commit

Permalink
Turn off check_exact for test_bool_agg
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Oct 8, 2024
1 parent 31667df commit eff6d9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cudf_polars/tests/expressions/test_agg.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def test_bool_agg(agg, request):
expr = getattr(pl.col("a"), agg)()
q = df.select(expr)

assert_gpu_result_equal(q)
assert_gpu_result_equal(q, check_exact=False)


@pytest.mark.parametrize("cum_agg", expr.UnaryFunction._supported_cum_aggs)
Expand Down

0 comments on commit eff6d9a

Please sign in to comment.