diff options
Diffstat (limited to 'cli')
-rw-r--r-- | cli/js/os_test.ts | 5 | ||||
-rw-r--r-- | cli/tests/integration_tests.rs | 5 |
2 files changed, 2 insertions, 8 deletions
diff --git a/cli/js/os_test.ts b/cli/js/os_test.ts index 93ba18ae6..6d9309000 100644 --- a/cli/js/os_test.ts +++ b/cli/js/os_test.ts @@ -248,9 +248,8 @@ testPerm({ env: true }, function getDir(): void { for (const r of s.runtime) { if (Deno.build.os !== r.os) continue; if (r.shouldHaveValue) { - assertNotEquals(Deno.dir(s.kind), ""); - } else { - assertEquals(Deno.dir(s.kind), null); + const d = Deno.dir(s.kind); + assert(d.length > 0); } } } diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 63e681e31..fcf339c92 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -103,11 +103,6 @@ fn repl_test() { } #[test] -fn setup_test() { - util::run_python_script("tools/setup_test.py") -} - -#[test] fn target_test() { util::run_python_script("tools/target_test.py") } |