mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-28 01:52:57 +01:00
fix tests
This commit is contained in:
parent
7036656ae4
commit
3623383e83
@ -245,8 +245,8 @@ impl<I, E> Reply<I, E> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
pub(crate) fn as_msg(&self) -> &T {
|
pub(crate) fn as_msg(&self) -> &I {
|
||||||
match self.0 {
|
match self.0.as_ref().unwrap() {
|
||||||
ReplyResult::Ok(ref resp) => resp,
|
ReplyResult::Ok(ref resp) => resp,
|
||||||
_ => panic!(),
|
_ => panic!(),
|
||||||
}
|
}
|
||||||
@ -254,7 +254,7 @@ impl<I, E> Reply<I, E> {
|
|||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
pub(crate) fn as_err(&self) -> Option<&E> {
|
pub(crate) fn as_err(&self) -> Option<&E> {
|
||||||
match self.0 {
|
match self.0.as_ref().unwrap() {
|
||||||
ReplyResult::Err(ref err) => Some(err),
|
ReplyResult::Err(ref err) => Some(err),
|
||||||
_ => None,
|
_ => None,
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user