From 9f382aeb328e9b93e45b60373590147ce5dfa1a2 Mon Sep 17 00:00:00 2001 From: galipremsagar Date: Mon, 31 Jan 2022 11:37:10 -0800 Subject: [PATCH] add comments --- python/cudf/cudf/tests/test_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/cudf/cudf/tests/test_list.py b/python/cudf/cudf/tests/test_list.py index ef61492b447..fc9ad9711d1 100644 --- a/python/cudf/cudf/tests/test_list.py +++ b/python/cudf/cudf/tests/test_list.py @@ -601,4 +601,4 @@ def test_listcol_setitem_retain_dtype(): # `ListColumn.children` that would have been corrupted in previous call # prior to this fix: https://github.com/rapidsai/cudf/pull/10151/ df2 = df1.copy() - assert df2.a.dtype == df.a.dtype + assert df2["a"].dtype == df["a"].dtype