diff --git a/src/egs/manifest_item.rs b/src/egs/manifest_item.rs index 9f38f7e..c753c7c 100644 --- a/src/egs/manifest_item.rs +++ b/src/egs/manifest_item.rs @@ -146,9 +146,9 @@ mod tests { let shortcut: ShortcutOwned = manifest.clone().into(); #[cfg(target_os = "windows")] - assert_eq!(shortcut.exe, "\"C:\\Games\\MarvelGOTG\\retail/gotg.exe\""); + assert_eq!(shortcut.exe, "C:\\Games\\MarvelGOTG\\retail/gotg.exe"); #[cfg(target_family = "unix")] - assert_eq!(shortcut.exe, "\"C:\\Games\\MarvelGOTG/retail/gotg.exe\""); + assert_eq!(shortcut.exe, "C:\\Games\\MarvelGOTG/retail/gotg.exe"); assert_eq!(shortcut.launch_options, ""); }