From 9c620af6354fc0d1fc37bd2b6d28c89ed1260089 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 Jul 2026 01:14:27 +0000 Subject: [PATCH] test: remove duplicate MatchMethod display test in src/ado/mod.rs test_match_method_explicit_display was a strict subset of test_match_method_all_variants_display (same assertion, plus two more variant checks). Remove the redundant single-variant test. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- src/ado/mod.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/ado/mod.rs b/src/ado/mod.rs index 0d118768..00111428 100644 --- a/src/ado/mod.rs +++ b/src/ado/mod.rs @@ -2611,11 +2611,6 @@ mod tests { // ==================== MatchMethod display ==================== - #[test] - fn test_match_method_explicit_display() { - assert_eq!(format!("{}", MatchMethod::Explicit), "explicit"); - } - #[test] fn test_match_method_all_variants_display() { assert_eq!(format!("{}", MatchMethod::YamlPath), "yaml-path");