Skip to content

Commit 17f451c

Browse files
committed
Fix tests due to new pybind11 version
1 parent 12560ce commit 17f451c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

subprojects/robotpy-wpiutil/tests/test_array.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ def test_load_array_int():
99
def test_load_array_annotation():
1010
assert (
1111
module.load_array_int.__doc__
12-
== "load_array_int(arg0: Tuple[int, int, int, int]) -> Tuple[int, int, int, int]\n"
12+
== "load_array_int(arg0: Tuple[typing.SupportsInt, typing.SupportsInt, typing.SupportsInt, typing.SupportsInt]) -> Tuple[int, int, int, int]\n"
1313
)
1414
assert (
1515
module.load_array_int1.__doc__
16-
== "load_array_int1(arg0: Tuple[int]) -> Tuple[int]\n"
16+
== "load_array_int1(arg0: Tuple[typing.SupportsInt]) -> Tuple[int]\n"
1717
)

0 commit comments

Comments
 (0)