mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Clippy warnings (#382)
This commit is contained in:
parent
2cbc42730b
commit
d39611d246
19 changed files with 33 additions and 43 deletions
|
@ -117,7 +117,7 @@ mod tests {
|
|||
let _ = tx.send(());
|
||||
crate::time::sleep(Duration::from_millis(25)).await;
|
||||
assert_eq!(lazy(|cx| srv.poll_ready(cx)).await, Poll::Ready(Ok(())));
|
||||
assert_eq!(srv.shutdown().await, ());
|
||||
srv.shutdown().await;
|
||||
}
|
||||
|
||||
#[ntex_macros::rt_test2]
|
||||
|
|
|
@ -118,7 +118,7 @@ mod tests {
|
|||
let _ = tx.send(());
|
||||
crate::time::sleep(Duration::from_millis(25)).await;
|
||||
assert_eq!(lazy(|cx| srv.poll_ready(cx)).await, Poll::Ready(Ok(())));
|
||||
assert_eq!(srv.shutdown().await, ());
|
||||
srv.shutdown().await;
|
||||
}
|
||||
|
||||
#[ntex_macros::rt_test2]
|
||||
|
|
|
@ -183,7 +183,7 @@ mod tests {
|
|||
Pipeline::new(TimeoutService::new(resolution, SleepService(wait_time)).clone());
|
||||
assert_eq!(timeout.call(()).await, Ok(()));
|
||||
assert_eq!(timeout.ready().await, Ok(()));
|
||||
assert_eq!(timeout.shutdown().await, ());
|
||||
timeout.shutdown().await;
|
||||
}
|
||||
|
||||
#[ntex_macros::rt_test2]
|
||||
|
|
|
@ -283,7 +283,7 @@ mod tests {
|
|||
let service = factory.pipeline(&()).await.unwrap().clone();
|
||||
|
||||
assert!(service.ready().await.is_ok());
|
||||
assert_eq!(service.shutdown().await, ());
|
||||
service.shutdown().await;
|
||||
|
||||
assert_eq!(service.call(Variant3::V1(())).await, Ok(1));
|
||||
assert_eq!(service.call(Variant3::V2(())).await, Ok(2));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue