From 4179a17b977b390aea5554ce3a7e1d78c55e80e0 Mon Sep 17 00:00:00 2001 From: brandon-b-miller <53796099+brandon-b-miller@users.noreply.github.com> Date: Mon, 5 Apr 2021 19:31:35 -0500 Subject: [PATCH] Update python/cudf/cudf/tests/test_contains.py Co-authored-by: Keith Kraus --- python/cudf/cudf/tests/test_contains.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/cudf/cudf/tests/test_contains.py b/python/cudf/cudf/tests/test_contains.py index be95eb7fc4b..e24e651e9bf 100644 --- a/python/cudf/cudf/tests/test_contains.py +++ b/python/cudf/cudf/tests/test_contains.py @@ -76,7 +76,7 @@ def test_rangeindex_contains(): assert_eq(False, 10 in RangeIndex(start=0, stop=10, name="Index")) -@pytest.mark.parametrize("dtype", SCALAR_TYPES) +@pytest.mark.parametrize("dtype", list(SCALAR_TYPES)) def test_lists_contains(dtype): dtype = np.dtype(dtype) inner_data = np.array([1, 2, 3], dtype=dtype)