Skip to content

Commit

Permalink
Change unit test string match
Browse files Browse the repository at this point in the history
  • Loading branch information
isVoid committed Jan 5, 2021
1 parent 3c74f7a commit 91273b2
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 @@ -2246,7 +2246,7 @@ def test_series_digitize_invalid_bins():
bins = gd.Series([2, None, None, 50, 90], dtype="int32")

with pytest.raises(
ValueError, match="Argument `bins` contains null entries."
ValueError, match="`bins` cannot contain null entries."
):
_ = s.digitize(bins)

Expand Down

0 comments on commit 91273b2

Please sign in to comment.