diff --git a/common/src/lib.rs b/common/src/lib.rs index 60697c7..4a7df9c 100644 --- a/common/src/lib.rs +++ b/common/src/lib.rs @@ -80,19 +80,6 @@ pub fn get_ros_msgs(paths: &[&Path]) -> Vec { msgs } -#[test] -fn test_msg_list() { - - let msgs = get_all_ros_msgs(); - for m in &msgs { - println!("{}", m); - } - - assert!(msgs.contains(&"std_msgs/msg/String".to_string())); - assert!(msgs.contains(&"builtin_interfaces/msg/Time".to_string())); - -} - pub fn parse_msgs(msgs: &Vec) -> Vec { let v: Vec> = msgs.iter().map(|l| l.split("/").into_iter().take(3).collect()).collect(); let v: Vec<_> = v.iter().filter(|v|v.len() == 3).