From 49b0884701a84731652fc934d428932ff6029bd4 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Tue, 5 May 2026 17:29:12 +0900 Subject: chore: remove redundant comments --- crates/mozart-core/src/console.rs | 8 -------- 1 file changed, 8 deletions(-) (limited to 'crates/mozart-core/src/console.rs') diff --git a/crates/mozart-core/src/console.rs b/crates/mozart-core/src/console.rs index e37ff23..fb7c9b9 100644 --- a/crates/mozart-core/src/console.rs +++ b/crates/mozart-core/src/console.rs @@ -267,8 +267,6 @@ impl Console { mod tests { use super::*; - // ── Verbosity::from_flags ─────────────────────────────────────────────── - #[test] fn test_verbosity_quiet_takes_priority() { assert_eq!(Verbosity::from_flags(3, true), Verbosity::Quiet); @@ -296,8 +294,6 @@ mod tests { assert_eq!(Verbosity::from_flags(10, false), Verbosity::Debug); } - // ── Verbosity ordering ────────────────────────────────────────────────── - #[test] fn test_verbosity_ordering() { assert!(Verbosity::Quiet < Verbosity::Normal); @@ -306,8 +302,6 @@ mod tests { assert!(Verbosity::VeryVerbose < Verbosity::Debug); } - // ── Console::resolve_decorated ────────────────────────────────────────── - #[test] fn test_resolve_decorated_no_ansi_wins() { assert!(!Console::resolve_decorated(true, true)); @@ -319,8 +313,6 @@ mod tests { assert!(Console::resolve_decorated(true, false)); } - // ── Console query methods ─────────────────────────────────────────────── - fn make_console(verbosity: Verbosity) -> Console { Console { interactive: false, -- cgit v1.3.1