diff options
Diffstat (limited to 'cli/tests/unit/process_test.ts')
-rw-r--r-- | cli/tests/unit/process_test.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cli/tests/unit/process_test.ts b/cli/tests/unit/process_test.ts index e4e2cc3c5..5acb92226 100644 --- a/cli/tests/unit/process_test.ts +++ b/cli/tests/unit/process_test.ts @@ -557,8 +557,9 @@ Deno.test( const obj = JSON.parse(new TextDecoder().decode(await p.output())); - // can't check for object equality because the OS may set additional env vars for processes - // so we check if PATH isn't present as that is a common env var across OS's and isn't set for processes. + // can't check for object equality because the OS may set additional env + // vars for processes, so we check if PATH isn't present as that is a common + // env var across OS's and isn't set for processes. assertEquals(obj.FOO, "23147"); assert(!("PATH" in obj)); |