Skip to content

Commit 9e88224

Browse files
committed
test: fixing failing test
1 parent b5181c4 commit 9e88224

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test-data/unit/stubgen.test

+2-2
Original file line numberDiff line numberDiff line change
@@ -909,13 +909,13 @@ alias = Dict[str, List[str]]
909909
alias = Dict[str, List[str]]
910910

911911
[case testDeepGenericTypeAliasPreserved]
912-
from typing import TypeVar
912+
from typing import List, TypeVar, Union
913913

914914
T = TypeVar('T')
915915
alias = Union[T, List[T]]
916916

917917
[out]
918-
from typing import TypeVar
918+
from typing import List, TypeVar, Union
919919

920920
T = TypeVar('T')
921921
alias = Union[T, List[T]]

0 commit comments

Comments
 (0)