From 77159f5e0015e01711c6cd4114e45a60ab97b26e Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Thu, 9 Nov 2023 04:37:39 -0800 Subject: [PATCH] Update test to match latest cuDF changes --- python/distributed-ucxx/distributed_ucxx/tests/test_ucxx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/distributed-ucxx/distributed_ucxx/tests/test_ucxx.py b/python/distributed-ucxx/distributed_ucxx/tests/test_ucxx.py index 0ba84b2a..91af3dad 100644 --- a/python/distributed-ucxx/distributed_ucxx/tests/test_ucxx.py +++ b/python/distributed-ucxx/distributed_ucxx/tests/test_ucxx.py @@ -180,7 +180,7 @@ async def test_ucxx_deserialize(ucxx_loop): [ lambda cudf: cudf.Series([1, 2, 3]), lambda cudf: cudf.Series([], dtype=object), - lambda cudf: cudf.DataFrame([]), + lambda cudf: cudf.DataFrame([], dtype=object), lambda cudf: cudf.DataFrame([1]).head(0), lambda cudf: cudf.DataFrame([1.0]).head(0), lambda cudf: cudf.DataFrame({"a": []}),