Skip to content

Commit 36c212b

Browse files
committed
Fix test_asdl_parser.py
1 parent 6ddca66 commit 36c212b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/test/test_asdl_parser.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,8 @@ def visitConstructor(self, cons):
117117

118118
v = CustomVisitor()
119119
v.visit(self.types['mod'])
120-
self.assertEqual(v.names_with_seq, ['Module', 'Interactive', 'Suite'])
120+
self.assertEqual(v.names_with_seq,
121+
['Module', 'Module', 'Interactive', 'FunctionType', 'Suite'])
121122

122123

123124
if __name__ == '__main__':

0 commit comments

Comments
 (0)