From d639463658ca1048ae93438a9b505da2d745ba83 Mon Sep 17 00:00:00 2001 From: goldlinker Date: Thu, 23 Oct 2025 16:49:22 +0800 Subject: [PATCH] chore: fix wrong test function name Signed-off-by: goldlinker --- lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib.rs b/lib.rs index 5447f60..2b89484 100644 --- a/lib.rs +++ b/lib.rs @@ -308,7 +308,7 @@ fn has_doc_comments(cargo_toml: &str) -> bool { } #[test] -fn test_has_doc_coment() { +fn test_has_doc_comments() { assert!(has_doc_comments("foo\nbar\n## comment\nddd")); assert!(!has_doc_comments("foo\nbar\n#comment\nddd")); assert!(!has_doc_comments(