build(deps-dev): apply updates
[poolifier.git] / tests / worker-files / thread / errorWorker.js
index e9f20ab8e5101120d7f51459bf338676208f404f..c4937c93ce9f1b45603bd0cfbef82d605602b3c3 100644 (file)
@@ -1,8 +1,8 @@
 'use strict'
 const { ThreadWorker, KillBehaviors } = require('../../../lib/index')
 
-function error (data) {
-  throw new Error(data)
+function error () {
+  throw new Error('Error Message from ThreadWorker')
 }
 
 module.exports = new ThreadWorker(error, {