diff --git a/tests/TestObjects.js b/tests/TestObjects.js index 75535039..b905a206 100644 --- a/tests/TestObjects.js +++ b/tests/TestObjects.js @@ -81,7 +81,7 @@ var AllTypesObjectSchema = { {name: 'dateCol', type: Realm.Types.DATE}, {name: 'dataCol', type: Realm.Types.DATA}, {name: 'objectCol', type: 'TestObject'}, - {name: 'arrayCol', type: Realm.Types.LIST, objectType: 'TestObject'}, + {name: 'arrayCol', type: Realm.Types.LIST, objectType: 'TestObject'}, ] }; @@ -97,7 +97,7 @@ var DefaultValuesObjectSchema = { {name: 'dataCol', type: Realm.Types.DATA, default: 'defaultData'}, {name: 'objectCol', type: 'TestObject', default: [1]}, {name: 'nullObjectCol', type: 'TestObject', default: null}, - {name: 'arrayCol', type: Realm.Types.LIST, objectType: 'TestObject', default: [[2]]}, + {name: 'arrayCol', type: Realm.Types.LIST, objectType: 'TestObject', default: [[2]]}, ] };