diff options
| author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2021-10-13 18:04:44 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-13 13:04:44 -0400 |
| commit | 7a22df9b7641274b2a83ce53845215d17cfda2c8 (patch) | |
| tree | 6cf99f74682635a0128c5cf79f5f7d3ecfbc85f1 /cli/tests/testdata/test/allow_all.ts | |
| parent | 43a63530acb16e57cbb190eacedbd097c536a775 (diff) | |
fix(runtime/ops/worker_host): move permission arg parsing to Rust (#12297)
Diffstat (limited to 'cli/tests/testdata/test/allow_all.ts')
| -rw-r--r-- | cli/tests/testdata/test/allow_all.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/testdata/test/allow_all.ts b/cli/tests/testdata/test/allow_all.ts index abe55a8d5..e70ac46b0 100644 --- a/cli/tests/testdata/test/allow_all.ts +++ b/cli/tests/testdata/test/allow_all.ts @@ -18,7 +18,7 @@ for (const name of permissions) { }, async fn() { const status = await Deno.permissions.query({ name }); - assertEquals(status.state, "denied"); + assertEquals(status.state, "prompt"); }, }); |
