Skip to content

Commit

Permalink
test update
Browse files Browse the repository at this point in the history
  • Loading branch information
galipremsagar committed Sep 18, 2023
1 parent 101c34d commit e95830c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cudf/cudf/tests/test_multiindex.py
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ def test_multiindex_copy_sem(data, levels, codes, names):
for glv, plv in zip(gmi_copy.levels, pmi_copy.levels):
assert all(glv.values_host == plv.values)
for gval, pval in zip(gmi.codes, pmi.codes):
assert_eq(gval, pval.astype(np.int64))
assert_eq(gval, pval)
assert_eq(gmi_copy.names, pmi_copy.names)

# Test same behavior when used on DataFrame
Expand Down

0 comments on commit e95830c

Please sign in to comment.