Skip to content

Commit b03661b

Browse files
committed
mixed nan-none test
1 parent 75f5eed commit b03661b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/test_funcs.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ def test_fail(self, args: tuple[tuple[int, ...], ...]):
163163
((math.nan,), (None,)),
164164
((1, None, 2, 4), (2, 3, None, 1), (2, None, None, 4)),
165165
((1, math.nan, 2), (4, 2, 3, math.nan), (4, 2, None, None)),
166+
((math.nan, 1), (None, 2), (None, 2)),
166167
],
167168
)
168169
def test_none(self, args: tuple[tuple[float | None, ...], ...]):

0 commit comments

Comments
 (0)