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