Skip to content

Commit

Permalink
fix test example
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Ghazaryan committed May 16, 2023
1 parent b8c3785 commit 713568f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test-insertbatch.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ const batchsize = 50;

export default () => {

var docobjs = []
let docobjs = []

for (var i = 0; i < batchsize; i++) {
for (let i = 0; i < batchsize; i++) {
docobjs.push(getRecord());
}

Expand Down

0 comments on commit 713568f

Please sign in to comment.