summaryrefslogtreecommitdiff
path: root/cli/tests/workers_test.ts
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2021-01-07 10:52:30 +0000
committerGitHub <noreply@github.com>2021-01-07 05:52:30 -0500
commitb5f1d257a3fb816dbf828da3dca0389e6cee2bb0 (patch)
tree752dc204793d4389bbc4e886b0dbd68e2cc24029 /cli/tests/workers_test.ts
parentcb658f5ce588dfac4826a5ce4d343738759c0c84 (diff)
fix: Use "none" instead of false to sandbox Workers (#9034)
Diffstat (limited to 'cli/tests/workers_test.ts')
-rw-r--r--cli/tests/workers_test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/workers_test.ts b/cli/tests/workers_test.ts
index 2dfc7e26b..c35ea72f5 100644
--- a/cli/tests/workers_test.ts
+++ b/cli/tests/workers_test.ts
@@ -600,7 +600,7 @@ Deno.test("Worker with disabled permissions", async function () {
type: "module",
deno: {
namespace: true,
- permissions: false,
+ permissions: "none",
},
},
);