We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed3f5cf commit e78dff5Copy full SHA for e78dff5
packages/firestore/test/integration/util/composite_index_test_helper.ts
@@ -112,10 +112,9 @@ export class CompositeIndexTestHelper {
112
}
113
114
// Remove test-specific fields from a document, including the testId and expiration date.
115
- private removeTestSpecificFieldsFromDoc(doc: DocumentData): DocumentData {
+ private removeTestSpecificFieldsFromDoc(doc: DocumentData): void {
116
doc._document?.data?.delete(field(this.TTL_FIELD));
117
doc._document?.data?.delete(field(this.TEST_ID_FIELD));
118
- return doc;
119
120
121
// Helper method to hash document keys and add test-specific fields for the provided documents.
0 commit comments