Skip to content

Commit 7b59ad6

Browse files
committed
Update test to pass out as a keyword only argument
1 parent 3ae8eff commit 7b59ad6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dpnp/tests/third_party/cupy/core_tests/test_ndarray_math.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def test_round_out(self, xp):
3939
self.shape, xp, scale=100, dtype=cupy.default_float_type()
4040
)
4141
out = xp.empty_like(a)
42-
a.round(self.decimals, out)
42+
a.round(self.decimals, out=out)
4343
return out
4444

4545

0 commit comments

Comments
 (0)