Skip to content

Commit 68aeffc

Browse files
committed
Fix type error on spare array values
1 parent a9620d6 commit 68aeffc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_kernel_activation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def make_sparse_message(
3131

3232
data = sparse.COO(
3333
coords=coords_array,
34-
data=np.array(values),
34+
data=np.array(values, dtype=float),
3535
shape=shape,
3636
)
3737

0 commit comments

Comments
 (0)