Skip to content

Commit

Permalink
Fix error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Mar 25, 2022
1 parent 7110ad5 commit 298572d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cudf/cudf/tests/test_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ def test_concatenate_rows_of_lists():


def test_concatenate_list_with_nonlist():
with pytest.raises(TypeError, match="can only concatenate list to list"):
with pytest.raises(TypeError):
gdf1 = cudf.DataFrame({"A": [["a", "c"], ["b", "d"], ["c", "d"]]})
gdf2 = cudf.DataFrame({"A": ["a", "b", "c"]})
gdf1["A"] + gdf2["A"]
Expand Down

0 comments on commit 298572d

Please sign in to comment.