diff --git a/.github/workflows/log-mutants.yml b/.github/workflows/log-mutants.yml index 7766ae1b5e..d2170f7a5b 100644 --- a/.github/workflows/log-mutants.yml +++ b/.github/workflows/log-mutants.yml @@ -23,7 +23,6 @@ jobs: save_cache: runs-on: ubuntu-latest - # test steps: - name: Run logging mutants from actions uses: ASuciuX/actions/mutation-testing/logger@feat/mutation-testing 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> {