diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2022-03-18 20:53:31 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-18 20:53:31 +0530 |
commit | 2799b0b7b4bd7a0f1a8390cb7960d9fdf2bb6d5e (patch) | |
tree | 4b4f3b83bf9bd0205e24344d9dab9cae2a90da22 /cli/tests | |
parent | 9c403f146e801bed741d9d66aaa415ff607cb657 (diff) |
chore(ops): include argument position in serde_v8 errors (#14027)
Diffstat (limited to 'cli/tests')
-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 bb9d56fe0..b9204adee 100644 --- a/cli/tests/testdata/workers/test.ts +++ b/cli/tests/testdata/workers/test.ts @@ -593,7 +593,7 @@ Deno.test("Worker with invalid permission arg", function () { deno: { permissions: { env: "foo" } }, }), TypeError, - 'Error parsing args: (deno.permissions.env) invalid value: string "foo", expected "inherit" or boolean or string[]', + 'Error parsing args at position 1: (deno.permissions.env) invalid value: string "foo", expected "inherit" or boolean or string[]', ); }); |