Skip to content

Commit

Permalink
FIX lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pubkey committed Dec 3, 2024
1 parent e9c8c21 commit 330eafa
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions test/performance.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,10 @@ describe('performance.test.ts', () => {
});
const firstCollectionName: string = collectionNames[0];
const collections = await db.addCollections(collectionData);
const collection = collections[firstCollectionName];
const collection2 = collections[collectionNames[1]];
return [collection, collection2];
return [collections[firstCollectionName], collections[collectionNames[1]]];
}
let cols = await createDbWithCollections();
let [collection, collection2] = cols;
const cols = await createDbWithCollections();
const [collection, collection2] = cols;


/**
Expand Down

0 comments on commit 330eafa

Please sign in to comment.