mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
update tests
This commit is contained in:
parent
7557c287b5
commit
cc55a4bbd3
12 changed files with 74 additions and 102 deletions
|
@ -518,11 +518,11 @@ mod tests {
|
|||
|
||||
impl<S, U> Dispatcher<S, U>
|
||||
where
|
||||
S: Service<Request = DispatchItem<U>, Response = Option<Response<U>>> + 'static,
|
||||
S: Service<DispatchItem<U>, Response = Option<Response<U>>> + 'static,
|
||||
U: Decoder + Encoder + 'static,
|
||||
{
|
||||
/// Construct new `Dispatcher` instance
|
||||
pub(crate) fn debug<T: IoStream, F: IntoService<S>>(
|
||||
pub(crate) fn debug<T: IoStream, F: IntoService<S, DispatchItem<U>>>(
|
||||
io: T,
|
||||
codec: U,
|
||||
service: F,
|
||||
|
@ -682,8 +682,7 @@ mod tests {
|
|||
|
||||
struct Srv(Rc<Cell<usize>>);
|
||||
|
||||
impl Service for Srv {
|
||||
type Request = DispatchItem<BytesCodec>;
|
||||
impl Service<DispatchItem<BytesCodec>> for Srv {
|
||||
type Response = Option<Response<BytesCodec>>;
|
||||
type Error = ();
|
||||
type Future = Ready<Option<Response<BytesCodec>>, ()>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue