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

This commit is contained in:
Ikko Eltociear Ashimine
2024-07-18 11:05:16 +02:00
committed by GitHub
parent fc058b9561
commit f71bded943
+1 -1
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();