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:
parent
8a0e645dfd
commit
055ab7e684
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue