Skip to content

Commit 149e459

Browse files
committed
Fix omitted argument
1 parent ac275e4 commit 149e459

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mypy/test/test_nativeparse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def test_parser(testcase: DataDrivenTestCase) -> None:
9898

9999
try:
100100
with temp_source(source) as fnam:
101-
node, errors, type_ignores = native_parse(fnam, options, skip_function_bodies)
101+
node, errors, type_ignores = native_parse(fnam, options, None, skip_function_bodies)
102102
errors += load_tree(node, options)
103103
node.path = "main"
104104
a = node.str_with_options(options).split("\n")

0 commit comments

Comments
 (0)