From 5a3292047c42b8a65d164f127fc57e57046fadf7 Mon Sep 17 00:00:00 2001 From: Nayeem Rahman Date: Tue, 18 Feb 2020 00:51:13 +0000 Subject: feat(std/io): Export readDelim(), readStringDelim() and readLines() from bufio.ts (#4019) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Bartek IwaƄczuk --- std/examples/tests/xeval_test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'std/examples/tests') diff --git a/std/examples/tests/xeval_test.ts b/std/examples/tests/xeval_test.ts index bfd66c097..3df11c8af 100644 --- a/std/examples/tests/xeval_test.ts +++ b/std/examples/tests/xeval_test.ts @@ -27,7 +27,7 @@ const xevalPath = "examples/xeval.ts"; Deno.test(async function xevalCliReplvar(): Promise { const p = run({ - args: [execPath(), xevalPath, "--", "--replvar=abc", "console.log(abc)"], + args: [execPath(), xevalPath, "--replvar=abc", "console.log(abc)"], stdin: "piped", stdout: "piped", stderr: "null" @@ -41,7 +41,7 @@ Deno.test(async function xevalCliReplvar(): Promise { Deno.test(async function xevalCliSyntaxError(): Promise { const p = run({ - args: [execPath(), xevalPath, "--", "("], + args: [execPath(), xevalPath, "("], stdin: "null", stdout: "piped", stderr: "piped" -- cgit v1.2.3