Ignore message-handling error in disconnect unit test

This commit is contained in:
Max Brunsfeld 2021-06-17 15:20:56 -07:00
parent 531443dc9c
commit a3c938cc77

View file

@ -461,7 +461,7 @@ mod tests {
barrier::channel();
let handle_messages = client.handle_messages(connection_id);
smol::spawn(async move {
handle_messages.await.unwrap();
handle_messages.await.ok();
incoming_messages_ended_tx.send(()).await.unwrap();
})
.detach();