summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/test_util.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/test_util.ts b/tests/unit/test_util.ts
index e78afb828..3f41b90a2 100644
--- a/tests/unit/test_util.ts
+++ b/tests/unit/test_util.ts
@@ -81,7 +81,7 @@ export function execCode3(cmd: string, args: string[]) {
}
export function execCode2(code: string) {
- return execCode3(Deno.execPath(), ["eval", "--unstable", "--no-check", code]);
+ return execCode3(Deno.execPath(), ["eval", code]);
}
export function tmpUnixSocketPath(): string {