Skip to content

Commit be419ed

Browse files
authored
rename tests
Signed-off-by: Manuel <[email protected]>
1 parent 840892e commit be419ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/MongoStorageAdapter.spec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ describe_only_db('mongo')('MongoStorageAdapter', () => {
395395
* If we use equalTo to comparse the nested pointer it works
396396
* But it does not work with contained in or matchesQuery
397397
*/
398-
it('Parse query works with nested objects if equal to is used', async () => {
398+
it('queries nested objects using equalTo', async () => {
399399
const child = new Parse.Object('Child')
400400
child.set('key','value')
401401
await child.save();
@@ -439,7 +439,7 @@ describe_only_db('mongo')('MongoStorageAdapter', () => {
439439
expect(query1.length).toEqual(1);
440440
})
441441

442-
it('Parse query works when matchesQuery is used which in turn uses contained in', async () => {
442+
it('queries nested objects using matchesQuery', async () => {
443443
const child = new Parse.Object('Child')
444444
child.set('key','value')
445445
await child.save();

0 commit comments

Comments
 (0)