diff --git a/src/egs/manifest_item.rs b/src/egs/manifest_item.rs index 7aff977..2df3936 100644 --- a/src/egs/manifest_item.rs +++ b/src/egs/manifest_item.rs @@ -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, ""); } }