Skip to content

Commit

Permalink
address CR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
bdevore17 committed Dec 6, 2021
1 parent 732eaf4 commit 746658a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/schemas.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1791,14 +1791,14 @@ describe('schemas', () => {
await testSchema.save();
});

it('addField not required for adding a nested field (#7371)', async () => {
it('addField permission not required for adding a nested property', async () => {
const obj = new Parse.Object('test_7371');
obj.set('a', {});
await obj.save();
obj.set('a.b', 2);
await obj.save();
});
it('addField not required for modifying a nested field (#7371)', async () => {
it('addField permission not required for modifying a nested property', async () => {
const obj = new Parse.Object('test_7371');
obj.set('a', { b: 1 });
await obj.save();
Expand Down

0 comments on commit 746658a

Please sign in to comment.