Add an exclusion for a mutant in a deprecated fn

Weekly mutation testing found a mutant in a deprecated function in
SignedAmount.

Exclude the function from mutation testing.
This commit is contained in:
Jamil Lambert, PhD 2025-03-26 09:50:50 +00:00
parent 9a2b56f381
commit f15e461baf
No known key found for this signature in database
GPG Key ID: 54DC29234AB5D2C0
1 changed files with 1 additions and 0 deletions

View File

@ -21,6 +21,7 @@ exclude_re = [
"Time::to_consensus_u32", # Mutant from replacing | with ^, this returns the same value since the XOR is taken against the u16 with an all-zero bitmask
"FeeRate::fee_vb", # Deprecated
"FeeRate::fee_wu", # Deprecated
"SignedAmount::checked_abs", # Deprecated
# primitives
"Sequence::from_512_second_intervals", # Mutant from replacing | with ^, this returns the same value since the XOR is taken against the u16 with an all-zero bitmask