From 25e85cb3e3d3dc89745a16b1f784140ae1cc51b7 Mon Sep 17 00:00:00 2001 From: Sarah Yurick <53962159+sarahyurick@users.noreply.github.com> Date: Mon, 26 Jul 2021 23:57:07 -0400 Subject: [PATCH] Update python/cudf/cudf/tests/test_dataframe.py Co-authored-by: GALI PREM SAGAR --- python/cudf/cudf/tests/test_dataframe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/cudf/cudf/tests/test_dataframe.py b/python/cudf/cudf/tests/test_dataframe.py index 5ca95def3bc..ecd31afd9e8 100644 --- a/python/cudf/cudf/tests/test_dataframe.py +++ b/python/cudf/cudf/tests/test_dataframe.py @@ -3084,7 +3084,7 @@ def test_select_dtype(): ) pdf = gdf.to_pandas() assert_eq( - pdf.select_dtypes("int64").columns, gdf.select_dtypes("int64").columns, + pdf.select_dtypes("int64"), gdf.select_dtypes("int64"), )