Removing invalid parse test

This commit is contained in:
Matt McCoy 2016-06-29 19:20:32 -04:00
parent dcf4a4299a
commit 75c4268e4e

View file

@ -145,11 +145,4 @@ mod tests {
let lines = vec![String::from("* LIST (\\HasNoChildren) \".\" \"INBOX\"\r\n"), String::from("a2 BAD broken.\r\n")];
parse_response(lines).unwrap();
}
#[test]
#[should_panic]
fn parse_response_invalid2_test() {
let lines = vec![String::from("* LIST (\\HasNoChildren) \".\" \"INBOX\"\r\n"), String::from("a2 broken.\r\n")];
parse_response(lines).unwrap();
}
}