Fix strategy handling in pool options (#259)
[poolifier.git] / benchmarks / internal / choose-worker.js
index e4e727a225c781e8aad777f0a3b7d97ddf8f49a3..560a395b69207ec6fede5d6abf39e3a2ad4ba2f3 100644 (file)
@@ -9,7 +9,7 @@ function generateWorkersArray (numberOfWorkers) {
 
 const workers = generateWorkersArray(60)
 
-let nextWorkerIndex = 0
+let nextWorkerIndex
 
 function chooseWorkerTernaryOffByOne () {
   nextWorkerIndex =
@@ -48,7 +48,7 @@ suite
     nextWorkerIndex = 0
     chooseWorkerTernaryWithNegation()
   })
-  .add('Ternary with PreChoosing', function () {
+  .add('Ternary with pre-choosing', function () {
     nextWorkerIndex = 0
     chooseWorkerTernaryWithPreChoosing()
   })