diff --git a/tests/integration_python/pixi_global/test_shortcuts.py b/tests/integration_python/pixi_global/test_shortcuts.py index c625f9af95..27b7454b09 100644 --- a/tests/integration_python/pixi_global/test_shortcuts.py +++ b/tests/integration_python/pixi_global/test_shortcuts.py @@ -57,7 +57,7 @@ def shortcut_exists(self, data_home: Path, name: str) -> bool: class WindowsConfig(PlatformConfig): def _shortcut_paths(self, data_home: Path, name: str) -> List[Path]: - return [data_home / "Desktop" / f"{name}.lnk", data_home / "Quick Launch" / f"{name}.lnk"] + return [data_home / "Desktop" / f"{name}.lnk"] def shortcut_exists(self, data_home: Path, name: str) -> bool: for path in self._shortcut_paths(data_home, name):