test: add missing pool destroy() calls
[poolifier.git] / tests / pools / cluster / dynamic.test.js
index 166b546db5bc147272672dff20cfc9d9600bbb8d..44d543ec5c83c032241a988555f7bccdabbc8812 100644 (file)
@@ -72,15 +72,15 @@ describe('Dynamic cluster pool test suite', () => {
   })
 
   it('Should work even without opts in input', async () => {
-    const pool1 = new DynamicClusterPool(
+    const pool = new DynamicClusterPool(
       min,
       max,
       './tests/worker-files/cluster/testWorker.js'
     )
-    const result = await pool1.execute()
+    const result = await pool.execute()
     expect(result).toStrictEqual({ ok: 1 })
     // We need to clean up the resources after our test
-    await pool1.destroy()
+    await pool.destroy()
   })
 
   it('Verify scale processes up and down is working when long executing task is used:hard', async () => {