diff --git a/ntex/src/http/h1/dispatcher.rs b/ntex/src/http/h1/dispatcher.rs index 53b4a15c..a8693671 100644 --- a/ntex/src/http/h1/dispatcher.rs +++ b/ntex/src/http/h1/dispatcher.rs @@ -696,7 +696,7 @@ mod tests { use crate::http::config::{DispatcherConfig, ServiceConfig}; use crate::http::h1::{ClientCodec, ExpectHandler, UpgradeHandler}; use crate::http::{body, Request, ResponseHead, StatusCode}; - use crate::io::{self as nio, DefaultFilter}; + use crate::io::{self as nio, Base}; use crate::service::{boxed, fn_service, IntoService}; use crate::util::{lazy, next, Bytes, BytesMut}; use crate::{codec::Decoder, testing::Io, time::sleep, time::Millis, time::Seconds}; @@ -707,7 +707,7 @@ mod tests { pub(crate) fn h1( stream: Io, service: F, - ) -> Dispatcher> + ) -> Dispatcher> where F: IntoService, S: Service, @@ -741,22 +741,18 @@ mod tests { S::Response: Into>, B: MessageBody + 'static, { - crate::rt::spawn(Dispatcher::< - DefaultFilter, - S, - B, - ExpectHandler, - UpgradeHandler, - >::new( - nio::Io::new(stream), - Rc::new(DispatcherConfig::new( - ServiceConfig::default(), - service.into_service(), - ExpectHandler, - None, - None, - )), - )); + crate::rt::spawn( + Dispatcher::>::new( + nio::Io::new(stream), + Rc::new(DispatcherConfig::new( + ServiceConfig::default(), + service.into_service(), + ExpectHandler, + None, + None, + )), + ), + ); } fn load(decoder: &mut ClientCodec, buf: &mut BytesMut) -> ResponseHead { @@ -777,7 +773,7 @@ mod tests { Seconds::ZERO, Millis(5_000), ); - let mut h1 = Dispatcher::<_, _, _, _, UpgradeHandler>::new( + let mut h1 = Dispatcher::<_, _, _, _, UpgradeHandler>::new( nio::Io::new(server), Rc::new(DispatcherConfig::new( config,