Skip to content

Commit bd62f2e

Browse files
committed
test: fix invalid negative 1 value for uint64 test
1 parent 2886d1b commit bd62f2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numba_cuda/numba/cuda/tests/cudapy/test_math.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ def test_math_fabs(self):
512512
self.unary_template_float32(math_fabs, np.fabs, start=-1)
513513
self.unary_template_float64(math_fabs, np.fabs, start=-1)
514514
self.unary_template_int64(math_fabs, np.fabs, start=-1)
515-
self.unary_template_uint64(math_fabs, np.fabs, start=-1)
515+
self.unary_template_uint64(math_fabs, np.fabs, start=0)
516516

517517
# ---------------------------------------------------------------------------
518518
# test_math_gamma

0 commit comments

Comments
 (0)