Skip to content

Commit f80f1f2

Browse files
committed
Make fewer mutations to avoid timing out.
1 parent 7c38b28 commit f80f1f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/firestore/test/unit/local/local_store.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2285,7 +2285,7 @@ function genericLocalStoreTests(
22852285
);
22862286

22872287
const mutations: PatchMutation[] = [];
2288-
for (let i = 0; i < 1000; ++i) {
2288+
for (let i = 0; i < 100; ++i) {
22892289
mutations.push(
22902290
new PatchMutation(
22912291
key('foo/bar'),

0 commit comments

Comments
 (0)