From 1ca4dada8b66d21fe95ba7c31db2193c0bd2417a Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Mon, 5 Dec 2022 14:08:29 -0800 Subject: [PATCH] Fix warnings in test_indexing.py (#12305) Contributes to #9999 and #10363. Authors: - Vyas Ramasubramani (https://github.com/vyasr) Approvers: - Michael Wang (https://github.com/isVoid) URL: https://github.com/rapidsai/cudf/pull/12305 --- python/cudf/cudf/tests/test_indexing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/cudf/cudf/tests/test_indexing.py b/python/cudf/cudf/tests/test_indexing.py index b4143f9e00a..58a6494dae9 100644 --- a/python/cudf/cudf/tests/test_indexing.py +++ b/python/cudf/cudf/tests/test_indexing.py @@ -1276,7 +1276,7 @@ def test_iloc_categorical_index(index): slice("2001", "2002"), slice("2002", "2001"), slice(None, "2020"), - slice("2020", None), + slice("2001", None), ], ) @pytest.mark.parametrize("is_dataframe", [True, False])