test: Wrote snapshot tests for all Sonarr UI

This commit is contained in:
2025-12-16 14:12:10 -07:00
parent e0fcbc71e1
commit 0532d59746
257 changed files with 8089 additions and 1029 deletions
+3 -3
View File
@@ -202,9 +202,9 @@ impl Network<'_, '_> {
.map(|update| {
let install_status = if update.installed_on.is_some() {
if update.installed {
"(Currently Installed)".to_owned()
" (Currently Installed)".to_owned()
} else {
"(Previously Installed)".to_owned()
" (Previously Installed)".to_owned()
}
} else {
String::new()
@@ -218,7 +218,7 @@ impl Network<'_, '_> {
};
let mut update_info = formatdoc!(
"{} - {} {install_status}
"{} - {}{install_status}
{}",
update.version,
update.release_date,