Drop individual fuzz target duplicate_crash tests for file reader
[rust-lightning] / fuzz / src / msg_targets / msg_closing_signed.rs
index 9a959d58cc309ba907229b45ae4aa87006656d14..8043d9de083853fc1c70145e2df2c8908c68962f 100644 (file)
@@ -14,11 +14,3 @@ pub fn do_test(data: &[u8]) {
 pub extern "C" fn msg_closing_signed_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());
-       }
-}