Remove impl Display from mutants exclusion list

The output of Display should not change in stable crates for types that
have well defined formatting and ones that implement FromStr.
Crates that are included in the mutation testing have been updated to
test all relevant Display implementations.

Remove the exclusion so that the Display implementations are included in
mutation testing.
This commit is contained in:
Jamil Lambert, PhD 2025-04-30 17:26:40 +01:00
parent 8a0e645dfd
commit 055ab7e684
No known key found for this signature in database
GPG Key ID: 54DC29234AB5D2C0
1 changed files with 0 additions and 2 deletions

View File

@ -7,8 +7,6 @@ exclude_re = [
"impl Arbitrary",
"impl Debug",
"impl fmt::Debug",
"impl Display",
"impl fmt::Display",
".*Error",
"deserialize", # Skip serde mutation tests
"Iterator", # Mutating operations in an iterator can result in an infinite loop