test: refactor pool tests
[poolifier.git] / src / pools / abstract-pool.ts
index ce59c992f81a08d52ba2e42c2f1b1443c9979b72..52f9c0e3fc25aeb6a2169cf49243cfacb03d2153 100644 (file)
@@ -16,8 +16,7 @@ import {
   max,
   median,
   min,
-  round,
-  updateMeasurementStatistics
+  round
 } from '../utils'
 import { KillBehaviors } from '../worker/worker-options'
 import type { TaskFunction } from '../worker/task-functions'
@@ -51,7 +50,8 @@ import { WorkerNode } from './worker-node'
 import {
   checkFilePath,
   checkValidTasksQueueOptions,
-  checkValidWorkerChoiceStrategy
+  checkValidWorkerChoiceStrategy,
+  updateMeasurementStatistics
 } from './utils'
 
 /**