Improve parsing of string types in idl definitions

This commit is contained in:
Marko Durkovic
2023-01-13 12:16:05 +01:00
parent eaa64002b8
commit aa18bec9d1
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -307,7 +307,7 @@ def test_parse_idl() -> None:
assert consts == []
assert len(fields) == 1
assert fields[0][0] == 'values'
assert fields[0][1] == (Nodetype.ARRAY, ((Nodetype.NAME, 'string'), 3))
assert fields[0][1] == (Nodetype.ARRAY, ((Nodetype.BASE, 'string'), 3))
def test_register_types() -> None: