Fix manifest unit tests

This commit is contained in:
Philip
2022-01-01 12:31:26 +01:00
parent a3d0377878
commit b7c1bb9fb8
+4
View File
@@ -138,7 +138,11 @@ mod tests {
manifest.is_managed = false;
let shortcut: ShortcutOwned = manifest.clone().into();
#[cfg(target_os = "windows")]
assert_eq!(shortcut.exe, "\"C:\\Games\\MarvelGOTG\\retail/gotg.exe\"");
#[cfg(target_os = "linux")]
assert_eq!(shortcut.exe, "\"C:\\Games\\MarvelGOTG/retail/gotg.exe\"");
assert_eq!(shortcut.launch_options, "");
}
}