Skip to content
This repository has been archived by the owner on Aug 22, 2024. It is now read-only.

Commit

Permalink
feat: update cache
Browse files Browse the repository at this point in the history
  • Loading branch information
ASuciuX committed Dec 10, 2023
1 parent 2051baa commit c4da1db
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions stx-genesis/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,11 @@ fn fn_option_remove() -> Option<u8> {
Some(2)
}

fn fn_option_remove_test() -> Option<u8> {
// comment in order to run mutants on this fn
Some(3)
}

fn fn_option_remove_clone() -> Option<u8> {
Some(3)
}
Expand All @@ -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<dyn Iterator<Item = GenesisZonefile>> {
Expand Down

0 comments on commit c4da1db

Please sign in to comment.