diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-09-14 23:05:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-14 23:05:18 +0200 |
commit | 5e7435fb8010a6d90f1b88d68ee8c431abf846e1 (patch) | |
tree | 6d4dda4dc6d23f10dfd9f3ec4683a66f88828c27 /cli/tests | |
parent | dc505e905ec256f034a963f12752dcc4187cb7b9 (diff) |
refactor: rewrite more ops to op2 macro (#20478)
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 90cc6a649..0ea9a7477 100644 --- a/cli/tests/testdata/workers/test.ts +++ b/cli/tests/testdata/workers/test.ts @@ -608,7 +608,7 @@ Deno.test("Worker with invalid permission arg", function () { deno: { permissions: { env: "foo" } }, }), TypeError, - 'Error parsing args at position 0: (deno.permissions.env) invalid value: string "foo", expected "inherit" or boolean or string[]', + '(deno.permissions.env) invalid value: string "foo", expected "inherit" or boolean or string[]', ); }); |