Skip to content

Commit

Permalink
Change to compare against pandas
Browse files Browse the repository at this point in the history
  • Loading branch information
mroeschke committed Sep 20, 2023
1 parent f4478d1 commit f0eb340
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cudf/cudf/tests/test_dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -10378,5 +10378,5 @@ def test_dataframe_init_from_nested_dict():

def test_data_frame_values_no_cols_but_index():
result = cudf.DataFrame(index=range(5)).values
expected = cupy.empty((5, 0), dtype=np.dtype("float64"), order="F")
expected = pd.DataFrame(index=range(5)).values
assert_eq(result, expected)

0 comments on commit f0eb340

Please sign in to comment.