diff options
Diffstat (limited to 'test/js/node/readline/readline.node.test.ts')
-rw-r--r-- | test/js/node/readline/readline.node.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/js/node/readline/readline.node.test.ts b/test/js/node/readline/readline.node.test.ts index 0ad442eb4..a30afcc82 100644 --- a/test/js/node/readline/readline.node.test.ts +++ b/test/js/node/readline/readline.node.test.ts @@ -143,7 +143,7 @@ describe("readline.clearLine()", () => { }, /ERR_INVALID_ARG_TYPE/); }); - it("shouldn't throw on on null or undefined stream", done => { + it("should not throw on null or undefined stream", done => { const { mustCall } = createCallCheckCtx(done); // Verify that clearLine() does not throw on null or undefined stream. assert.strictEqual(readline.clearLine(null, 0), true); |