This commit is contained in:
Ari Lazier 2016-11-11 19:33:21 -08:00
parent 15bb3014b9
commit baa8321453
1 changed files with 1 additions and 1 deletions

View File

@ -203,7 +203,7 @@ module.exports = {
var username = uuid(); var username = uuid();
// Because it waits for answer this takes some time.. // Because it waits for answer this takes some time..
return callbackTest((callback) => Realm.Sync.User.register('http://fake_host.local', username, 'password', callback), (error, user) => { return callbackTest((callback) => Realm.Sync.User.register('http://fake_host.local', username, 'password', callback), (error, user) => {
assertIsError(error, 'ECONNRESET'); assertIsError(error);
TestCase.assertUndefined(user); TestCase.assertUndefined(user);
}); });
}, },