diff --git a/stx-genesis/src/lib.rs b/stx-genesis/src/lib.rs index ff82dcb3b7..1de0a065fd 100644 --- a/stx-genesis/src/lib.rs +++ b/stx-genesis/src/lib.rs @@ -115,11 +115,6 @@ fn fn_option_remove() -> Option { Some(2) } -fn fn_option_remove_test() -> Option { - // comment in order to run mutants on this fn - Some(3) -} - fn fn_option_remove_clone() -> Option { Some(3) } @@ -129,6 +124,11 @@ fn fn_int_remove() -> u32 { 12 } +fn fn_int_remove_test() -> u32 { + // comment in order to run mutants on this fn + 13 +} + fn read_deflated_zonefiles_test_clone( deflate_bytes: &'static [u8], ) -> Box> {