Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
cdce8p committed Sep 29, 2022
1 parent 4451ce7 commit 0f61110
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mypyc/test-data/irbuild-statements.test
Original file line number Diff line number Diff line change
Expand Up @@ -1006,9 +1006,9 @@ L5:
return 1

[case testForZip]
from typing import List, Iterable
from typing import List, Iterable, Sequence

def f(a: List[int], b: Iterable[bool]) -> None:
def f(a: List[int], b: Sequence[bool]) -> None:
for x, y in zip(a, b):
if b:
x = 1
Expand Down

0 comments on commit 0f61110

Please sign in to comment.