Skip to content

Commit ba90dc4

Browse files
Fix duplicated TypeVarTuple test (#16853)
#15879 (comment)
1 parent e48a025 commit ba90dc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-data/unit/check-generics.test

+1-1
Original file line numberDiff line numberDiff line change
@@ -3441,5 +3441,5 @@ def dec(f: Callable[[Unpack[Ts]], Foo[Unpack[Ts]]]) -> Callable[[Unpack[Ts]], Fo
34413441
g: Callable[[T], Foo[int]]
34423442
reveal_type(dec(g)) # N: Revealed type is "def (builtins.int) -> __main__.Foo[builtins.int]"
34433443
h: Callable[[Unpack[Us]], Foo[int]]
3444-
reveal_type(dec(g)) # N: Revealed type is "def (builtins.int) -> __main__.Foo[builtins.int]"
3444+
reveal_type(dec(h)) # N: Revealed type is "def (builtins.int) -> __main__.Foo[builtins.int]"
34453445
[builtins fixtures/list.pyi]

0 commit comments

Comments
 (0)