Skip to content

Commit cf4ea62

Browse files
1 parent 343c8ec commit cf4ea62

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

‎handwritten/firestore/dev/system-test/pipeline.ts‎

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -186,19 +186,19 @@ const timestampDeltaMS = 3000;
186186
let beginDocCreation = 0;
187187
let endDocCreation = 0;
188188

189-
async function testCollectionWithDocs(
190-
targetCol: CollectionReference,
191-
docs: {
192-
[id: string]: DocumentData;
189+
async function testCollectionWithDocs(
190+
targetCol: CollectionReference,
191+
docs: {
192+
[id: string]: DocumentData;
193193
},
194194
): Promise<CollectionReference<DocumentData>> {
195195
beginDocCreation = new Date().valueOf();
196196
for (const id in docs) {
197-
const ref = targetCol.doc(id);
197+
const ref = targetCol.doc(id);
198198
await ref.set(docs[id]);
199199
}
200200
endDocCreation = new Date().valueOf();
201-
return targetCol;
201+
return targetCol;
202202
}
203203

204204
function expectResults(result: PipelineSnapshot, ...docs: string[]): void;
@@ -226,7 +226,7 @@ describe.skipClassic('Pipeline class', () => {
226226
let randomCol: CollectionReference;
227227

228228
async function setupBookDocs(
229-
targetCol: CollectionReference,
229+
targetCol: CollectionReference,
230230
): Promise<CollectionReference<DocumentData>> {
231231
const bookDocs: {[id: string]: DocumentData} = {
232232
book1: {

0 commit comments

Comments
 (0)