diff options
Diffstat (limited to 'tests/unit/os_test.ts')
-rw-r--r-- | tests/unit/os_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/os_test.ts b/tests/unit/os_test.ts index 9503f75d1..52aa2ce77 100644 --- a/tests/unit/os_test.ts +++ b/tests/unit/os_test.ts @@ -172,7 +172,7 @@ Deno.test( async function osPpidIsEqualToPidOfParentProcess() { const decoder = new TextDecoder(); const { stdout } = await new Deno.Command(Deno.execPath(), { - args: ["eval", "-p", "--unstable", "Deno.ppid"], + args: ["eval", "-p", "Deno.ppid"], env: { NO_COLOR: "true" }, }).output(); |