diff options
author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2022-04-08 10:32:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-08 10:32:48 +0200 |
commit | f5f7b56acaf45a7f858db6f25ad5985ab4d8c7b9 (patch) | |
tree | ec956b0df25e3a326b2eb057eb199184f0dad00e /cli/tests/testdata/workers/test.ts | |
parent | b2aaf708abd1af7c6df34a273a1720de63f93fcc (diff) |
refactor(core): OpCtx (#14228)
Diffstat (limited to 'cli/tests/testdata/workers/test.ts')
-rw-r--r-- | cli/tests/testdata/workers/test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/testdata/workers/test.ts b/cli/tests/testdata/workers/test.ts index d75ca499b..8877c9564 100644 --- a/cli/tests/testdata/workers/test.ts +++ b/cli/tests/testdata/workers/test.ts @@ -655,7 +655,7 @@ Deno.test("Worker with invalid permission arg", function () { deno: { permissions: { env: "foo" } }, }), TypeError, - 'Error parsing args at position 1: (deno.permissions.env) invalid value: string "foo", expected "inherit" or boolean or string[]', + 'Error parsing args at position 0: (deno.permissions.env) invalid value: string "foo", expected "inherit" or boolean or string[]', ); }); |