From 055ab7e684e53783b56139d14779fb39268e8f3c Mon Sep 17 00:00:00 2001 From: "Jamil Lambert, PhD" Date: Wed, 30 Apr 2025 17:26:40 +0100 Subject: [PATCH] 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. --- .cargo/mutants.toml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.cargo/mutants.toml b/.cargo/mutants.toml index adb7e9f44..87cffbcf2 100644 --- a/.cargo/mutants.toml +++ b/.cargo/mutants.toml @@ -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