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