diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-08-06 21:10:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-06 21:10:04 +0200 |
commit | 0d1a522a03c22749e96dab06ca7b3e8b428df701 (patch) | |
tree | 742f0f5495db3ef306b94b078957336c764fbbc7 /cli/tests | |
parent | 2b53602d3c798b68db4ce986546d3434b986096a (diff) |
revert: allow URL for permissions (#11600)
Revert changes to "net" permissions in regards to handling URLs
introduced in 15b0e61de.
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/unit/permissions_test.ts | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/cli/tests/unit/permissions_test.ts b/cli/tests/unit/permissions_test.ts index 2ed9c11a9..45ba39b96 100644 --- a/cli/tests/unit/permissions_test.ts +++ b/cli/tests/unit/permissions_test.ts @@ -71,8 +71,4 @@ unitTest(async function permissionURL() { name: "run", command: new URL(".", import.meta.url), }); - await Deno.permissions.query({ - name: "net", - host: new URL("https://deno.land/foo"), - }); }); |