fix(test): use fully-qualified ratatui::style::Color::Reset

The test module couldn't resolve Color via the file-level import in
Rust 2024 edition cfg(test) context. Use the full path instead.
This commit is contained in:
Hunter Bown
2026-05-05 00:58:07 -05:00
parent 2ee826924a
commit 239e5925a1
+1 -1
View File
@@ -147,7 +147,7 @@ mod tests {
let theme = Theme::dark();
assert_eq!(theme.variant, Variant::Dark);
assert_eq!(theme.section_border_color, palette::BORDER_COLOR);
assert_eq!(theme.section_bg, Color::Reset);
assert_eq!(theme.section_bg, ratatui::style::Color::Reset);
assert_eq!(theme.section_title_color, palette::DEEPSEEK_BLUE);
assert_eq!(theme.tool_title_color, palette::TEXT_SOFT);
assert_eq!(theme.tool_value_color, palette::TEXT_MUTED);