From 3483b65e9173d9ef7ea709de898b3a7866045fbd Mon Sep 17 00:00:00 2001 From: Till Hoeppner Date: Sat, 18 Apr 2015 15:12:41 +0200 Subject: Make tests/examples compile, not work though --- src/message.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/message.rs') diff --git a/src/message.rs b/src/message.rs index dfe7f29..fd77aef 100644 --- a/src/message.rs +++ b/src/message.rs @@ -1189,7 +1189,7 @@ mod test { Some(Cow::Owned("*** Looking up your hostname...".to_owned())), MsgType::Irc ); - assert_eq!(a.parse(), Some(a2.clone())); + assert_eq!(a.parse::().unwrap(), a2.clone()); assert_eq!(a2.to_string(), a); let b = ":d PRIVMSG You :\u{1}ACTION sends you funny pictures of cats!\u{1}"; @@ -1200,7 +1200,7 @@ mod test { Some(Cow::Owned("\u{1}ACTION sends you funny pictures of cats!\u{1}".to_owned())), MsgType::Ctcp ); - assert_eq!(b.parse(), Some(b2.clone())); + assert_eq!(b.parse::().unwrap(), b2.clone()); assert_eq!(b2.to_string(), b); } -- cgit v1.2.3