diff options
author | Luca Casonato <hello@lcas.dev> | 2022-03-20 22:46:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-20 22:46:39 +0100 |
commit | daa7c6d32ab5a4029f8084e174d621f5562256be (patch) | |
tree | 27ed9921f4e6b1c2cb662bc7c1d51e73c9f9a50d /cli/tests/unit/net_test.ts | |
parent | d0a7305676b1df0819d7f9ecd900110526da9109 (diff) |
fix: actually don't inherit runtime permissions (#14024)
Diffstat (limited to 'cli/tests/unit/net_test.ts')
-rw-r--r-- | cli/tests/unit/net_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/unit/net_test.ts b/cli/tests/unit/net_test.ts index 29e823b10..6769f6301 100644 --- a/cli/tests/unit/net_test.ts +++ b/cli/tests/unit/net_test.ts @@ -380,7 +380,7 @@ Deno.test( ); Deno.test( - { permissions: { net: true } }, + { permissions: { net: true }, ignore: true }, async function netUdpSendReceiveBroadcast() { // Must bind sender to an address that can send to the broadcast address on MacOS. // Macos will give us error 49 when sending the broadcast packet if we omit hostname here. |