1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-21 09:23:54 +00:00

fix tests

This commit is contained in:
Nikolay Kim 2018-05-02 16:48:42 -07:00
parent 7036656ae4
commit 3623383e83

View file

@ -245,8 +245,8 @@ impl<I, E> Reply<I, E> {
}
#[cfg(test)]
pub(crate) fn as_msg(&self) -> &T {
match self.0 {
pub(crate) fn as_msg(&self) -> &I {
match self.0.as_ref().unwrap() {
ReplyResult::Ok(ref resp) => resp,
_ => panic!(),
}
@ -254,7 +254,7 @@ impl<I, E> Reply<I, E> {
#[cfg(test)]
pub(crate) fn as_err(&self) -> Option<&E> {
match self.0 {
match self.0.as_ref().unwrap() {
ReplyResult::Err(ref err) => Some(err),
_ => None,
}