From 61701dc3487dadd50c2b3fc190f4e89a36a00975 Mon Sep 17 00:00:00 2001 From: GALI PREM SAGAR Date: Fri, 11 Mar 2022 15:09:06 -0600 Subject: [PATCH] Update python/cudf/cudf/tests/test_timedelta.py Co-authored-by: Bradley Dice --- python/cudf/cudf/tests/test_timedelta.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/cudf/cudf/tests/test_timedelta.py b/python/cudf/cudf/tests/test_timedelta.py index d3bd9c299bf..05fa526d8ed 100644 --- a/python/cudf/cudf/tests/test_timedelta.py +++ b/python/cudf/cudf/tests/test_timedelta.py @@ -881,7 +881,7 @@ def test_timedelta_index_ops_with_scalars(data, other_scalars, dtype, op): ), ], ) -@pytest.mark.filterwarnings("ignore::RuntimeWarning") +@pytest.mark.filterwarnings("ignore:divide by zero:RuntimeWarning:pandas") def test_timedelta_index_ops_with_cudf_scalars(data, cpu_scalar, dtype, op): gtdi = cudf.Index(data=data, dtype=dtype) ptdi = gtdi.to_pandas()