Skip to content

Commit

Permalink
TST: Fixup test mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
seberg committed Jul 2, 2024
1 parent 1696800 commit d8d324d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cudf/cudf/tests/test_scalar.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def test_scalar_out_of_bounds_pyint_fails(value, dtype):
# Test that we align with NumPy on scalar creation behavior from
# Python integers.
np_ver = np.lib.NumpyVersion(np.__version__)
if np_ver >= "2.0":
if np_ver >= "2.0.0":
with pytest.raises(OverflowError):
cudf.Scalar(value, dtype)
else:
Expand Down

0 comments on commit d8d324d

Please sign in to comment.