Searched refs:size_no_match (Results 1 – 1 of 1) sorted by relevance
259 let mut size_no_match: Vec<u8> = vec![]; in test_conncomplete_parsing() localVariable260 size_no_match.extend(i16::to_ne_bytes((CONNECT_COMPLETE_SIZE - 1) as i16)); in test_conncomplete_parsing()261 size_no_match.extend([0u8; CONNECT_COMPLETE_SIZE - 2]); in test_conncomplete_parsing()263 assert_eq!(false, ConnectionComplete::try_from(size_no_match.as_slice()).is_ok()); in test_conncomplete_parsing()