Don't mess with inner object keys called _auth_data_*

This commit is contained in:
Drew Gross
2016-05-21 20:57:31 -07:00
parent 69d5a2f87c
commit 9f149e6db5

View File

@@ -1121,7 +1121,7 @@ describe('miscellaneous', function() {
})
});
it('does not change inner object key names _auth_data_something', done => {
it('does not change inner object keys named _auth_data_something', done => {
new Parse.Object('O').save({ innerObj: {_auth_data_facebook: 7}})
.then(object => new Parse.Query('O').get(object.id))
.then(object => {