Skip to content

Commit

Permalink
small nit
Browse files Browse the repository at this point in the history
  • Loading branch information
flovilmart committed May 29, 2016
1 parent 6c200e4 commit f7afe5c
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/__tests__/ParseObject-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -864,10 +864,6 @@ describe('ParseObject', () => {
o.save({ key: 'value', deletedKey: 'keyToDelete' }).then(() => {
expect(o.get('key')).toBe('value');
expect(o.get('deletedKey')).toBeUndefined();
o = new ParseObject('Item');
return o.save({ ACL: 'not an acl' });
}).then(null, (error) => {
expect(error.code).toBe(-1);
done();
});
}));
Expand Down

0 comments on commit f7afe5c

Please sign in to comment.