Skip to content

Commit 0f61110

Browse files
committed
Fix test
1 parent 4451ce7 commit 0f61110

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mypyc/test-data/irbuild-statements.test

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1006,9 +1006,9 @@ L5:
10061006
return 1
10071007

10081008
[case testForZip]
1009-
from typing import List, Iterable
1009+
from typing import List, Iterable, Sequence
10101010

1011-
def f(a: List[int], b: Iterable[bool]) -> None:
1011+
def f(a: List[int], b: Sequence[bool]) -> None:
10121012
for x, y in zip(a, b):
10131013
if b:
10141014
x = 1

0 commit comments

Comments
 (0)