Drop individual fuzz target duplicate_crash tests for file reader
[rust-lightning] / fuzz / src / msg_targets / msg_onion_hop_data.rs
index 0b02302ad5f341f44debebde269a739940f33e27..e446a063bd9df18bc52c268b57e15c138a6ac6f9 100644 (file)
@@ -14,11 +14,3 @@ pub fn do_test(data: &[u8]) {
 pub extern "C" fn msg_onion_hop_data_run(data: *const u8, datalen: usize) {
        do_test(unsafe { std::slice::from_raw_parts(data, datalen) });
 }
-
-#[cfg(test)]
-mod tests {
-       #[test]
-       fn duplicate_crash() {
-               super::do_test(&::hex::decode("00").unwrap());
-       }
-}