From 1a541f0f46ed7a98b33c003391a9780103d8e86b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Sat, 29 Jan 2022 13:21:43 +0100 Subject: [PATCH] test: fix typo in MessageChannel test --- test/parallel/test-worker-message-port-infinite-message-loop.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();