diff options
author | Chad Austin <chad@imvu.com> | 2013-05-30 12:02:03 -0700 |
---|---|---|
committer | Chad Austin <chad@imvu.com> | 2013-07-17 11:28:42 -0700 |
commit | c86809e40da84859ec3dde789b4ad8faac86faff (patch) | |
tree | db0b76e1622709a9fa6e8e59e65bd82f9e13d4e1 /tests/embind/embind.test.js | |
parent | 295b89e59b926e4e5e00386cb981eef3036c9e76 (diff) |
Rename value_tuple to value_array and value_struct to value_object
Diffstat (limited to 'tests/embind/embind.test.js')
-rw-r--r-- | tests/embind/embind.test.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/embind/embind.test.js b/tests/embind/embind.test.js index e60e1ab3..8661d87e 100644 --- a/tests/embind/embind.test.js +++ b/tests/embind/embind.test.js @@ -1747,8 +1747,8 @@ module({ BaseFixture.extend("constants", function() { assert.equal(10, cm.INT_CONSTANT); assert.equal("some string", cm.STRING_CONSTANT); - assert.deepEqual([1, 2, 3, 4], cm.VALUE_TUPLE_CONSTANT); - assert.deepEqual({x:1,y:2,z:3,w:4}, cm.VALUE_STRUCT_CONSTANT); + assert.deepEqual([1, 2, 3, 4], cm.VALUE_ARRAY_CONSTANT); + assert.deepEqual({x:1,y:2,z:3,w:4}, cm.VALUE_OBJECT_CONSTANT); }); BaseFixture.extend("object handle comparison", function() { |