Skip to content

Commit dea2c67

Browse files
committed
Update irbuild-str.test
1 parent 4adc262 commit dea2c67

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mypyc/test-data/irbuild-str.test

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ from typing import NewType, Union
514514
NewStr = NewType("NewStr", str)
515515
def do_count(s: str) -> int:
516516
return s.count("x") # type: ignore [attr-defined]
517-
[builtins fixtures/string.pyi]
517+
[builtins fixtures/ir.pyi]
518518
[typing fixtures/typing-full.pyi]
519519
[out]
520520
def do_count(s):
@@ -536,7 +536,7 @@ from typing import NewType, Union
536536
NewStr = NewType("NewStr", str)
537537
def do_count(s: str, start: int) -> int:
538538
return s.count("x", start) # type: ignore [attr-defined]
539-
[builtins fixtures/string.pyi]
539+
[builtins fixtures/ir.pyi]
540540
[typing fixtures/typing-full.pyi]
541541
[out]
542542
def do_count(s, start):
@@ -560,7 +560,7 @@ from typing import NewType, Union
560560
NewStr = NewType("NewStr", str)
561561
def do_count(s: str, start: int, end: int) -> int:
562562
return s.count("x", start, end) # type: ignore [attr-defined]
563-
[builtins fixtures/string.pyi]
563+
[builtins fixtures/ir.pyi]
564564
[typing fixtures/typing-full.pyi]
565565
[out]
566566
def do_count(s, start, end):

0 commit comments

Comments
 (0)