Underscore in numbers is too new for some Node versions

This commit is contained in:
Michael Lumish 2020-06-16 14:05:58 -07:00
parent b825055163
commit 8a4a9b3235
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ describe(`${anyGrpc.clientName} client -> ${anyGrpc.serverName} server`, functio
response_parameters: [
]
};
for (let i = 0; i < 100_000; i++) {
for (let i = 0; i < 100000; i++) {
arg.response_parameters.push({size: 0});
}
var call = client.streamingOutputCall(arg);