chore(tests): fix test for deprecated Future::boxed

This commit is contained in:
Sean McArthur
2017-08-24 15:05:42 -07:00
parent 207fca63ce
commit cb9aff3c52

View File

@@ -539,7 +539,7 @@ impl Service for TestService {
fn call(&self, req: Request) -> Self::Future { fn call(&self, req: Request) -> Self::Future {
let tx = self.tx.clone(); let tx = self.tx.clone();
let replies = self.reply.clone(); let replies = self.reply.clone();
req.body().for_each(move |chunk| { Box::new(req.body().for_each(move |chunk| {
tx.lock().unwrap().send(Msg::Chunk(chunk.to_vec())).unwrap(); tx.lock().unwrap().send(Msg::Chunk(chunk.to_vec())).unwrap();
Ok(()) Ok(())
}).map(move |_| { }).map(move |_| {
@@ -558,7 +558,7 @@ impl Service for TestService {
} }
} }
res res
}).boxed() }))
} }
} }