1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-06-26 19:47:43 +02:00

travis config

This commit is contained in:
Nikolay Kim
2019-03-14 11:55:39 -07:00
parent c9b86712e5
commit 6659b192d3
2 changed files with 28 additions and 5 deletions

View File

@ -245,7 +245,7 @@ mod tests {
let (tx3, rx3) = oneshot::channel();
let (tx_stop, rx_stop) = oneshot::channel();
std::thread::spawn(move || {
let h = std::thread::spawn(move || {
let rx1 = rx1;
let rx2 = rx2;
let rx3 = rx3;
@ -274,5 +274,6 @@ mod tests {
let _ = tx1.send(1);
let _ = rx_stop.wait();
let _ = h.join();
}
}