fix tests again

This commit is contained in:
Douglas Creager 2025-12-08 14:28:43 -05:00
parent d2fae5c531
commit d30cb13028
1 changed files with 1 additions and 1 deletions

View File

@ -451,7 +451,7 @@ def keyword_only_with_default_2(*, y: int = 42) -> int:
# parameter list i.e., `()`
# TODO: This shouldn't error
# error: [invalid-argument-type]
# revealed: (*, x: int = Unknown) -> bool
# revealed: (*, x: int = Literal[42]) -> bool
reveal_type(multiple(keyword_only_with_default_1, keyword_only_with_default_2))
def keyword_only1(*, x: int) -> int: