From 6e937d9896317efa2b00f272b81844efcb63c22e Mon Sep 17 00:00:00 2001 From: Eamonn Rea Date: Mon, 29 Jul 2024 03:37:40 +0100 Subject: [PATCH] correct comment --- tests/test_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_util.py b/tests/test_util.py index 8534ea1b..4bb3289b 100644 --- a/tests/test_util.py +++ b/tests/test_util.py @@ -26,7 +26,7 @@ def test_get_launcher_from_installdir() -> None: bottles_install_paths: list[str] = [ install_location['install_dir'] for install_location in POSSIBLE_INSTALL_LOCATIONS if install_location['launcher'] == 'bottles' ] bottles_install_path_tests: list[Launcher] = [ get_launcher_from_installdir(bottles_path) for bottles_path in bottles_install_paths ] - # All possible Bottles paths + # All possible WineZGUI paths winezgui_install_paths: list[str] = [ install_location['install_dir'] for install_location in POSSIBLE_INSTALL_LOCATIONS if install_location['launcher'] == 'winezgui' ] winezgui_install_path_tests: list[Launcher] = [ get_launcher_from_installdir(winezgui_path) for winezgui_path in winezgui_install_paths ]