sync: fix typo in name of test (#6693)

This commit is contained in:
Ikko Eltociear Ashimine 2024-07-18 18:05:16 +09:00 committed by GitHub
parent fc058b9561
commit f71bded943
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -355,7 +355,7 @@ async fn multiple_sender() {
}
#[tokio::test]
async fn reciever_is_notified_when_last_sender_is_dropped() {
async fn receiver_is_notified_when_last_sender_is_dropped() {
let (tx1, mut rx) = watch::channel(0);
let tx2 = tx1.clone();