fix clippy

This commit is contained in:
fakeshadow 2020-12-27 16:08:15 +08:00
parent 340feeeff9
commit 9f1c066629
1 changed files with 3 additions and 2 deletions

View File

@ -71,10 +71,11 @@ pub async fn test_server_with_addr<F: ServiceFactory<TcpStream>>(
.unwrap()
.workers(1)
.disable_signals()
.start()
.start();
tx.send((System::current(), local_addr)).unwrap();
});
tx.send((System::current(), local_addr)).unwrap();
sys.run()
});