Skip to content

Commit a0dd5de

Browse files
author
theodoreando
committed
fix pythoneval test
1 parent 2cb296a commit a0dd5de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-data/unit/pythoneval.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ def f(*args: str) -> str: return args[0]
616616
map(f, ['x'])
617617
map(f, [1])
618618
[out]
619-
_program.py:4: error: Argument 1 to "map" has incompatible type "Callable[[VarArg(str)], str]"; expected "Callable[[int], str]"
619+
_program.py:4: error: Argument 1 to "map" has incompatible type "def f(*args: str) -> str"; expected "Callable[[int], str]"
620620

621621
[case testMapStr]
622622
import typing

0 commit comments

Comments
 (0)