diff --git a/src/app/sonarr/sonarr_tests.rs b/src/app/sonarr/sonarr_tests.rs index 28942ab..35245ef 100644 --- a/src/app/sonarr/sonarr_tests.rs +++ b/src/app/sonarr/sonarr_tests.rs @@ -487,7 +487,7 @@ mod tests { } #[tokio::test] - async fn test_dispatch_by_add_movie_search_results_block() { + async fn test_dispatch_by_add_series_search_results_block() { let (mut app, mut sync_network_rx) = construct_app_unit(); app diff --git a/src/ui/sonarr_ui/library/edit_series_ui_tests.rs b/src/ui/sonarr_ui/library/edit_series_ui_tests.rs index d201aec..c138fa1 100644 --- a/src/ui/sonarr_ui/library/edit_series_ui_tests.rs +++ b/src/ui/sonarr_ui/library/edit_series_ui_tests.rs @@ -7,7 +7,7 @@ mod tests { use crate::ui::DrawUi; #[test] - fn test_edit_movie_ui_accepts() { + fn test_edit_series_ui_accepts() { ActiveSonarrBlock::iter().for_each(|active_sonarr_block| { if EDIT_SERIES_BLOCKS.contains(&active_sonarr_block) { assert!(EditSeriesUi::accepts(active_sonarr_block.into()));