Skip to content

Commit b2fc336

Browse files
committed
remove the extra test case
1 parent ae7b868 commit b2fc336

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

test-data/unit/check-generics.test

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3602,14 +3602,4 @@ def draw(
36023602
reveal_type(c1) # N: Revealed type is "Union[builtins.int, builtins.str]"
36033603
reveal_type(c2) # N: Revealed type is "Union[builtins.int, builtins.str]"
36043604
reveal_type(c3) # N: Revealed type is "Union[builtins.int, builtins.str]"
3605-
3606-
def draw_again(
3607-
colors1: B[str] | A[int | str] | C[str] | E[int] | D[int],
3608-
colors2: B[str] | A[int | str] | C[str] | E[int] | D[int],
3609-
colors3: B[str] | A[int | str] | C[str] | E[int] | D[int],
3610-
) -> None:
3611-
for c1, c2, c3 in zip2(colors1, colors2, colors3):
3612-
reveal_type(c1) # N: Revealed type is "Union[builtins.int, builtins.str]"
3613-
reveal_type(c2) # N: Revealed type is "Union[builtins.int, builtins.str]"
3614-
reveal_type(c3) # N: Revealed type is "Union[builtins.int, builtins.str]"
36153605
[builtins fixtures/tuple.pyi]

0 commit comments

Comments
 (0)