summaryrefslogtreecommitdiff
path: root/cli/tests
diff options
context:
space:
mode:
authorValentin Anger <syrupthinker@gryphno.de>2020-04-29 20:48:19 +0200
committerGitHub <noreply@github.com>2020-04-29 14:48:19 -0400
commit721a4ad59d4a8bdd8470d6b98839137f14c84ba9 (patch)
treea8a7f7810a92c366224564b62b5fe7acab717466 /cli/tests
parent17cf2ecdacea2254c06374866c4e7e83e282226d (diff)
BREAKING: Map-like interface for Deno.env (#4942)
Diffstat (limited to 'cli/tests')
-rw-r--r--cli/tests/permission_test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/permission_test.ts b/cli/tests/permission_test.ts
index 1e6abae21..bcfb840bf 100644
--- a/cli/tests/permission_test.ts
+++ b/cli/tests/permission_test.ts
@@ -11,7 +11,7 @@ const test: { [key: string]: Function } = {
makeTempDirSync();
},
envRequired(): void {
- env().home;
+ env.get("home");
},
netRequired(): void {
listen({ transport: "tcp", port: 4541 });