test: Updated Rust edition to 2024 and refactored network module tests to be more idiomatic

This commit is contained in:
2025-12-03 14:49:27 -07:00
parent c4e8d64710
commit ad58912baf
257 changed files with 4033 additions and 4380 deletions
+2 -2
View File
@@ -6,9 +6,9 @@ use ratatui::style::Style;
use ratatui::text::{Span, Text};
use ratatui::widgets::{Cell, Row};
use ratatui::{
Frame,
layout::{Constraint, Rect},
widgets::ListItem,
Frame,
};
use crate::app::App;
@@ -23,7 +23,7 @@ use crate::ui::widgets::managarr_table::ManagarrTable;
use crate::ui::widgets::selectable_list::SelectableList;
use crate::{
models::Route,
ui::{utils::title_block, DrawUi},
ui::{DrawUi, utils::title_block},
};
mod system_details_ui;