Skip to content

Commit 76c9806

Browse files
fix: lint fixes
1 parent 116e1f9 commit 76c9806

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

spec/ParseQuery.spec.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5308,7 +5308,7 @@ describe('Parse.Query testing', () => {
53085308
});
53095309

53105310
/**
5311-
* If we use equalTo to comparse the nested pointer it works
5311+
* If we use equalTo to comparse the nested pointer it works
53125312
* But it does not work with contained in or matchesQuery
53135313
*/
53145314
it('Parse query works with nested objects if equal to is used', async () => {
@@ -5349,8 +5349,8 @@ describe('Parse.Query testing', () => {
53495349
await parent.save();
53505350

53515351
const query1 = await new Parse.Query('Parent')
5352-
.containedIn('some.nested.key.child', [child])
5353-
.find();
5352+
.containedIn('some.nested.key.child', [child])
5353+
.find();
53545354

53555355
expect(query1.length).toEqual(1);
53565356
})
@@ -5371,8 +5371,8 @@ describe('Parse.Query testing', () => {
53715371
await parent.save();
53725372

53735373
const query1 = await new Parse.Query('Parent')
5374-
.matchesQuery('some.nested.key.child', new Parse.Query('Child').equalTo('key','value'))
5375-
.find();
5374+
.matchesQuery('some.nested.key.child', new Parse.Query('Child').equalTo('key','value'))
5375+
.find();
53765376

53775377
expect(query1.length).toEqual(1);
53785378
})

0 commit comments

Comments
 (0)