From f653cc2f6c576ee1fe5ca6db504a116b7d54c620 Mon Sep 17 00:00:00 2001 From: Dario Piotrowicz Date: Sun, 11 May 2025 18:25:11 +0100 Subject: [PATCH] test: remove unnecessary `console.log` from test-repl-null-thrown --- test/parallel/test-repl-null-thrown.js | 1 - 1 file changed, 1 deletion(-) diff --git a/test/parallel/test-repl-null-thrown.js b/test/parallel/test-repl-null-thrown.js index 0ed4a05fd5de55..2d28aa2d820ac2 100644 --- a/test/parallel/test-repl-null-thrown.js +++ b/test/parallel/test-repl-null-thrown.js @@ -19,6 +19,5 @@ replserver.emit('line', 'process.nextTick(() => { throw null; })'); replserver.emit('line', '.exit'); setTimeout(() => { - console.log(text); assert(text.includes('Uncaught null')); }, 0);