diff --git a/test/parallel/test-worker-message-port-infinite-message-loop.js b/test/parallel/test-worker-message-port-infinite-message-loop.js index 640b3383ca62c3..0cd1cc06802055 100644 --- a/test/parallel/test-worker-message-port-infinite-message-loop.js +++ b/test/parallel/test-worker-message-port-infinite-message-loop.js @@ -6,7 +6,7 @@ const { MessageChannel } = require('worker_threads'); // Make sure that an infinite asynchronous .on('message')/postMessage loop // does not lead to a stack overflow and does not starve the event loop. -// We schedule timeouts both from before the the .on('message') handler and +// We schedule timeouts both from before the .on('message') handler and // inside of it, which both should run. const { port1, port2 } = new MessageChannel();