Skip to content

Commit 21b2919

Browse files
committed
Update query.test.ts
1 parent c827ca1 commit 21b2919

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/firestore/test/unit/core/query.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -844,11 +844,11 @@ describe('Query', () => {
844844
query(
845845
'foo',
846846
filter('a', '<', 5),
847-
filter('a.a', '>', 5),
847+
filter('a.z', '>', 5),
848848
filter(fieldPath('a.a'), '>', 5)
849849
),
850850
orderBy('a'),
851-
orderBy('a.a'), // nested field
851+
orderBy('a.z'), // nested field
852852
orderBy(fieldPath('a.a')), // field name with dot
853853
orderBy(DOCUMENT_KEY_NAME)
854854
);

0 commit comments

Comments
 (0)