diff --git a/stx-genesis/src/lib.rs b/stx-genesis/src/lib.rs index 1de0a065fd..ff82dcb3b7 100644 --- a/stx-genesis/src/lib.rs +++ b/stx-genesis/src/lib.rs @@ -115,6 +115,11 @@ 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) } @@ -124,11 +129,6 @@ 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> {