File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -5308,7 +5308,7 @@ describe('Parse.Query testing', () => {
5308
5308
} ) ;
5309
5309
5310
5310
/**
5311
- * If we use equalTo to comparse the nested pointer it works
5311
+ * If we use equalTo to comparse the nested pointer it works
5312
5312
* But it does not work with contained in or matchesQuery
5313
5313
*/
5314
5314
it ( 'Parse query works with nested objects if equal to is used' , async ( ) => {
@@ -5349,8 +5349,8 @@ describe('Parse.Query testing', () => {
5349
5349
await parent . save ( ) ;
5350
5350
5351
5351
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 ( ) ;
5354
5354
5355
5355
expect ( query1 . length ) . toEqual ( 1 ) ;
5356
5356
} )
@@ -5371,8 +5371,8 @@ describe('Parse.Query testing', () => {
5371
5371
await parent . save ( ) ;
5372
5372
5373
5373
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 ( ) ;
5376
5376
5377
5377
expect ( query1 . length ) . toEqual ( 1 ) ;
5378
5378
} )
You can’t perform that action at this time.
0 commit comments