Skip to content

Commit d614297

Browse files
authored
Fix bug in delete snippet
1 parent 2edc31c commit d614297

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

firestore/test.firestore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ describe("firestore", () => {
286286
return snapshot.size;
287287
});
288288
}).then(function(numDeleted) {
289-
if (numDeleted <= batchSize) {
289+
if (numDeleted < batchSize) {
290290
resolve();
291291
return;
292292
}

0 commit comments

Comments
 (0)