diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-04-17 15:41:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-17 09:41:28 -0400 |
commit | f191dd86098b8b822de786396f00e7f1318009b5 (patch) | |
tree | bc9ff08ea818dfad1ca0d64b948bc24f73957b34 /ext/net/ops.rs | |
parent | 26aafd3a15bf186977b3ac80356b380d422d86e2 (diff) |
test: don't silently fail in check_sockopt (#18737)
Diffstat (limited to 'ext/net/ops.rs')
-rw-r--r-- | ext/net/ops.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/net/ops.rs b/ext/net/ops.rs index 8e7263753..a9f038ecc 100644 --- a/ext/net/ops.rs +++ b/ext/net/ops.rs @@ -1033,7 +1033,7 @@ mod tests { let clone_addr = addr.clone(); tokio::spawn(async move { let listener = TcpListener::bind(addr).await.unwrap(); - let _ = listener.accept().await; + let _ = listener.accept().await.unwrap(); }); deno_core::extension!( |