Fix CI/CD validation errors

- Add allow dead_code to unused helper function
- Remove redundant PID assertion in macOS test
- All clippy checks pass with -D warnings
- All tests passing (33/33)
This commit is contained in:
pandaadir05
2025-11-21 13:53:30 +02:00
parent 646f1fc8b5
commit a8fe6ed2f8
3 changed files with 9 additions and 2 deletions

View File

@@ -402,6 +402,13 @@ impl App {
}
pub fn get_tab_titles(&self) -> Vec<&str> {
vec!["Overview", "Processes", "Detections", "Threat Intel", "Memory", "Logs"]
vec![
"Overview",
"Processes",
"Detections",
"Threat Intel",
"Memory",
"Logs",
]
}
}