Update client.rs

fixed stray connection
This commit is contained in:
michael-bailey 2022-03-02 20:21:57 +00:00
parent 4cf7cb5cde
commit b33db558e7
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ mod test {
// fetch from out_channel
let disconnect_msg = receiver.recv().await.unwrap();
assert_eq!(disconnect_msg, Disconnect {id: uuid, connection: Connection::new()});
assert_eq!(disconnect_msg, Disconnect {id: uuid});
Ok(())
}