1
0
Fork 0
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:
Bartek Iwańczuk 2023-04-17 15:41:28 +02:00 committed by GitHub
parent 26aafd3a15
commit f191dd8609
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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!(