X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=benchmarks%2Finternal%2Fcluster%2Ffixed.js;h=62c19aabf87fad362973abff99f2f390a8015712;hb=a7dc540979d13bee0dd320858214b776fa556e4d;hp=60a5b938f8a5a6f46fc474a1e0e115152dba05e0;hpb=ff5e76e152be8540cba8118bb4e2b9da314dfff5;p=poolifier.git diff --git a/benchmarks/internal/cluster/fixed.js b/benchmarks/internal/cluster/fixed.js index 60a5b938..62c19aab 100644 --- a/benchmarks/internal/cluster/fixed.js +++ b/benchmarks/internal/cluster/fixed.js @@ -1,5 +1,5 @@ const { FixedClusterPool } = require('../../../lib/index') -const { runTest } = require('../benchmark-utils') +const { runPoolifierTest } = require('../benchmark-utils') const size = 30 @@ -11,7 +11,7 @@ const fixedPool = new FixedClusterPool( async function fixedClusterTest ( { tasks, workerData } = { tasks: 1, workerData: { proof: 'ok' } } ) { - return runTest(fixedPool, { tasks, workerData }) + return runPoolifierTest(fixedPool, { tasks, workerData }) } module.exports = { fixedClusterTest }