From c866b52942b326674e9ab2adf52467d5f27cdf53 Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Sun, 27 Jan 2019 01:59:24 +0100 Subject: [PATCH] test: remove obsolete code MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The removed line does not add anything of value to the test. It was removed to simplify the test. PR-URL: https://github.com/nodejs/node/pull/25731 Reviewed-By: Michaƫl Zasso Reviewed-By: Ben Noordhuis --- test/parallel/test-repl-tab-complete-no-warn.js | 1 - 1 file changed, 1 deletion(-) diff --git a/test/parallel/test-repl-tab-complete-no-warn.js b/test/parallel/test-repl-tab-complete-no-warn.js index 58d0a1332fb193..7aedee69c31cb7 100644 --- a/test/parallel/test-repl-tab-complete-no-warn.js +++ b/test/parallel/test-repl-tab-complete-no-warn.js @@ -15,7 +15,6 @@ const testMe = repl.start('', putIn); // `Runtime.executionContextCreated` listener process.on('warning', common.mustNotCall()); -putIn.run(['.clear']); putIn.run(['async function test() {']); for (let i = 0; i < DEFAULT_MAX_LISTENERS; i++) { testMe.complete('await Promise.resolve()', () => {});