Skip to content

Commit d2cc53f

Browse files
committed
Fix reveal test
1 parent 886ceeb commit d2cc53f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

numpy/typing/tests/data/reveal/shape_base.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,5 @@ assert_type(np.kron(AR_f8, AR_f8), npt.NDArray[np.floating[Any]])
5454
assert_type(np.tile(AR_i8, 5), npt.NDArray[np.int64])
5555
assert_type(np.tile(AR_LIKE_f8, [2, 2]), npt.NDArray[Any])
5656

57-
assert_type(np.unstack(AR_i8, axis=0), tuple[npt.NDArray[np.int64]])
58-
assert_type(np.unstack(AR_LIKE_f8, axis=0), tuple[npt.NDArray[Any]])
57+
assert_type(np.unstack(AR_i8, axis=0), tuple[npt.NDArray[np.int64], ...])
58+
assert_type(np.unstack(AR_LIKE_f8, axis=0), tuple[npt.NDArray[Any], ...])

0 commit comments

Comments
 (0)