Update to object store master to pick up the fix for the global notifier. (#778)

This commit is contained in:
Mark Rowe 2017-01-05 02:56:11 -08:00 committed by Kristian Dupont
parent c4b22a160a
commit 9d858d0329
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit 814beb5a1e96f0bb72cf78e206b2e710ac79e217
Subproject commit ea7df44e2ffc4854fd4657a8b4c7ec53c8bfed15

View File

@ -60,7 +60,7 @@ module.exports = {
TestCase.assertEqual(defaultRealm.schemaVersion, 0);
TestCase.assertThrows(function() {
new Realm({schemaVersion: 1});
new Realm({schemaVersion: 1, schema: []});
}, "Realm already opened at a different schema version");
TestCase.assertEqual(new Realm().schemaVersion, 0);