mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 15:24:46 -05:00
test: don't silently fail in check_sockopt (#18737)
This commit is contained in:
parent
26aafd3a15
commit
f191dd8609
1 changed files with 1 additions and 1 deletions
|
@ -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!(
|
||||
|
|
Loading…
Reference in a new issue