Skip to content

Commit 8afa534

Browse files
authored
Update check-fastparse.test
1 parent 5c8534b commit 8afa534

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test-data/unit/check-fastparse.test

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ f()
186186
f(1) # E: Too many arguments for "f"
187187

188188
[case testFasterParseTooFewArgumentsAnnotation]
189-
def f(x, y): # E: Type signature has too few arguments
189+
def f(x, y): # E: Type signature has too few parameters
190190
# type: (int) -> None
191191
x()
192192
y()
@@ -215,7 +215,7 @@ x @ 1
215215
x @= 1
216216

217217
[case testFastParserShowsMultipleErrors]
218-
def f(x): # E: Type signature has too few arguments
218+
def f(x): # E: Type signature has too few parameters
219219
# type: () -> None
220220
pass
221221
def g(): # E: Type signature has too many parameters

0 commit comments

Comments
 (0)