Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/integration_python/pixi_global/test_shortcuts.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
Loading