Skip to content

Commit 598c5fe

Browse files
committed
Fix: Conflicting type on Windows
1 parent 0ce4024 commit 598c5fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ def to_array(x, dtype=None):
614614
(simd.cosine, LookupError, (to_array([1 + 2j]), to_array([1 + 2j])), {}),
615615
# Test incompatible vectors for cosine
616616
(simd.cosine, ValueError, (to_array([1.0]), to_array([1.0, 2.0])), {}), # Different number of dimensions
617-
(simd.cosine, TypeError, (to_array([1.0]), to_array([1], "uint32")), {}), # Floats and integers
617+
(simd.cosine, TypeError, (to_array([1.0]), to_array([1], "int8")), {}), # Floats and integers
618618
(simd.cosine, TypeError, (to_array([1]), to_array([1], "float16")), {}), # Different floats
619619
],
620620
)

0 commit comments

Comments
 (0)