mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 21:32:40 +00:00
Ignore message-handling error in disconnect unit test
This commit is contained in:
parent
531443dc9c
commit
a3c938cc77
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue