Change killBehaviorEnumeration to killBehaviorTypes
[poolifier.git] / tests / worker / thread / errorWorker.js
index 6b7ee3c9e6dccdfcbcf063097e005ce8c531907e..7f7fdadd6ff4fe612588d2b6fc7ecd1e27fc74db 100644 (file)
@@ -1,5 +1,5 @@
 'use strict'
-const { ThreadWorker, killBehaviorEnumeration } = require('../../../lib/index')
+const { ThreadWorker, killBehaviorTypes } = 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: killBehaviorTypes.HARD
 })