Skip to content

Commit 51f1376

Browse files
committed
fix test_typeinfo
1 parent 6191576 commit 51f1376

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4830,7 +4830,7 @@ def process(filename):
48304830
print('|' + Runtime.typeInfo.UserStruct.fields + '|' + Runtime.typeInfo.UserStruct.flatIndexes + '|');
48314831
var t = Runtime.generateStructInfo(['x', { us: ['x', 'y', 'z'] }, 'y'], 'Encloser')
48324832
print('|' + [t.x, t.us.x, t.us.y, t.us.z, t.y] + '|');
4833-
print('|' + JSON.stringify(Runtime.generateStructInfo(null, 'UserStruct')) + '|');
4833+
print('|' + JSON.stringify(Runtime.generateStructInfo(['x', 'y', 'z'], 'UserStruct')) + '|');
48344834
} else {
48354835
print('No type info.');
48364836
}

0 commit comments

Comments
 (0)