Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 66a96ab

Browse files
committed
fix
1 parent d3663af commit 66a96ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/functions/test_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,5 +171,5 @@ def _func_without_return_type(x):
171171

172172
signature = inspect.signature(_func_without_return_type)
173173

174-
assert not has_conflict_output_type(signature, int)
175-
assert not has_conflict_output_type(signature, float)
174+
assert not has_conflict_output_type(signature, output_type=int)
175+
assert not has_conflict_output_type(signature, output_type=float)

0 commit comments

Comments
 (0)