More tests (#159)

* More tests
* clippy tests
This commit is contained in:
Nikolay Kim 2023-01-08 17:45:22 +06:00 committed by GitHub
parent f47e830cfb
commit 15019a2a43
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
32 changed files with 196 additions and 118 deletions

View file

@ -241,7 +241,7 @@ mod tests {
fn call(&self, _: ()) -> Self::Future<'_> {
let fut = crate::time::sleep(self.0);
Box::pin(async move {
let _ = fut.await;
fut.await;
Ok::<_, SrvError>(())
})
}