Improvements for #161 (#169)
[poolifier.git] / tests / worker / thread / errorWorker.js
index 6b7ee3c9e6dccdfcbcf063097e005ce8c531907e..e9f20ab8e5101120d7f51459bf338676208f404f 100644 (file)
@@ -1,5 +1,5 @@
 'use strict'
-const { ThreadWorker, killBehaviorEnumeration } = require('../../../lib/index')
+const { ThreadWorker, KillBehaviors } = require('../../../lib/index')
 
 function error (data) {
   throw new Error(data)
@@ -7,5 +7,5 @@ function error (data) {
 
 module.exports = new ThreadWorker(error, {
   maxInactiveTime: 500,
-  killBehavior: killBehaviorEnumeration.HARD
+  killBehavior: KillBehaviors.HARD
 })