Skip to content

Commit 3d205fd

Browse files
Update test_errors
1 parent 088e8a6 commit 3d205fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dpnp/tests/test_mathematical.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1282,7 +1282,7 @@ def test_errors(self):
12821282

12831283
# left is not scalar or 0-dim
12841284
left = [1]
1285-
assert_raises(ValueError, dpnp.interp, x, xp, fp, left=left)
1285+
assert_raises(TypeError, dpnp.interp, x, xp, fp, left=left)
12861286

12871287
# left is 1-d array
12881288
left = dpnp.array([1.0])

0 commit comments

Comments
 (0)