From ff546712955ca2625587a4fbf6005f2ba6cd0efe Mon Sep 17 00:00:00 2001 From: milaGGL <107142260+milaGGL@users.noreply.github.com> Date: Thu, 12 Dec 2024 16:05:35 -0500 Subject: [PATCH] wrap documentIds into '' --- .../test/integration/api/database.test.ts | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/packages/firestore/test/integration/api/database.test.ts b/packages/firestore/test/integration/api/database.test.ts index c007c44973d..9c2ae8440d1 100644 --- a/packages/firestore/test/integration/api/database.test.ts +++ b/packages/firestore/test/integration/api/database.test.ts @@ -2250,13 +2250,13 @@ apiDescribe('Database', persistence => { describe('sort documents by DocumentId', () => { it('snapshot listener sorts query by DocumentId same way as get query', async () => { const testDocs = { - A: { a: 1 }, - a: { a: 1 }, - Aa: { a: 1 }, + 'A': { a: 1 }, + 'a': { a: 1 }, + 'Aa': { a: 1 }, '7': { a: 1 }, - 12: { a: 1 }, + '12': { a: 1 }, '__id7__': { a: 1 }, - __id12__: { a: 1 }, + '__id12__': { a: 1 }, '__id-2__': { a: 1 }, '_id1__': { a: 1 }, '__id1_': { a: 1 }, @@ -2301,13 +2301,13 @@ apiDescribe('Database', persistence => { it('snapshot listener sorts filtered query by DocumentId same way as get query', async () => { const testDocs = { - A: { a: 1 }, - a: { a: 1 }, - Aa: { a: 1 }, + 'A': { a: 1 }, + 'a': { a: 1 }, + 'Aa': { a: 1 }, '7': { a: 1 }, - 12: { a: 1 }, + '12': { a: 1 }, '__id7__': { a: 1 }, - __id12__: { a: 1 }, + '__id12__': { a: 1 }, '__id-2__': { a: 1 }, '_id1__': { a: 1 }, '__id1_': { a: 1 }, @@ -2351,13 +2351,13 @@ apiDescribe('Database', persistence => { (persistence.gc === 'lru' ? describe : describe.skip)('offline', () => { it('SDK orders query the same way online and offline', async () => { const testDocs = { - A: { a: 1 }, - a: { a: 1 }, - Aa: { a: 1 }, + 'A': { a: 1 }, + 'a': { a: 1 }, + 'Aa': { a: 1 }, '7': { a: 1 }, - 12: { a: 1 }, + '12': { a: 1 }, '__id7__': { a: 1 }, - __id12__: { a: 1 }, + '__id12__': { a: 1 }, '__id-2__': { a: 1 }, '_id1__': { a: 1 }, '__id1_': { a: 1 },