aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-01-31 16:33:52 -0800
committerAlon Zakai <alonzakai@gmail.com>2012-01-31 16:33:52 -0800
commit51f1376cf249c7da09b2a872efff49040674e933 (patch)
tree5c62b5498f6e561a3d041e8f7cfb50675674a657
parent619157622fbfed2c2c69fe743acbf63c07028bfb (diff)
fix test_typeinfo
-rwxr-xr-xtests/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 52ba7dc3..d547cf92 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -4830,7 +4830,7 @@ def process(filename):
print('|' + Runtime.typeInfo.UserStruct.fields + '|' + Runtime.typeInfo.UserStruct.flatIndexes + '|');
var t = Runtime.generateStructInfo(['x', { us: ['x', 'y', 'z'] }, 'y'], 'Encloser')
print('|' + [t.x, t.us.x, t.us.y, t.us.z, t.y] + '|');
- print('|' + JSON.stringify(Runtime.generateStructInfo(null, 'UserStruct')) + '|');
+ print('|' + JSON.stringify(Runtime.generateStructInfo(['x', 'y', 'z'], 'UserStruct')) + '|');
} else {
print('No type info.');
}