We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c07dfe4 commit da74bd5Copy full SHA for da74bd5
tests/link/numba/test_basic.py
@@ -100,8 +100,6 @@ def set_test_value(x, v):
100
101
102
def compare_shape_dtype(x, y):
103
- (x,) = x
104
- (y,) = y
105
return x.shape == y.shape and x.dtype == y.dtype
106
107
@@ -246,7 +244,7 @@ def assert_fn(x, y):
246
244
for j, p in zip(numba_res, py_res):
247
245
assert_fn(j, p)
248
else:
249
- assert_fn(numba_res, py_res)
+ assert_fn(numba_res[0], py_res[0])
250
251
return numba_res
252
0 commit comments