diff --git a/Tools/LyTestTools/ly_test_tools/_internal/managers/platforms/linux.py b/Tools/LyTestTools/ly_test_tools/_internal/managers/platforms/linux.py index 0cf213c746..cdbd379183 100644 --- a/Tools/LyTestTools/ly_test_tools/_internal/managers/platforms/linux.py +++ b/Tools/LyTestTools/ly_test_tools/_internal/managers/platforms/linux.py @@ -59,7 +59,7 @@ class _LinuxResourceManager(AbstractResourceLocator): class LinuxWorkspaceManager(AbstractWorkspaceManager): """ - A Mac host WorkspaceManager. Contains Mac overridden functions for the AbstractWorkspaceManager class. + A Linux host WorkspaceManager. Contains Mac overridden functions for the AbstractWorkspaceManager class. Also creates a Mac host ResourceLocator for directory and build mappings. """ def __init__( diff --git a/Tools/LyTestTools/ly_test_tools/launchers/platforms/linux/launcher.py b/Tools/LyTestTools/ly_test_tools/launchers/platforms/linux/launcher.py index 47a538d90e..210519d197 100644 --- a/Tools/LyTestTools/ly_test_tools/launchers/platforms/linux/launcher.py +++ b/Tools/LyTestTools/ly_test_tools/launchers/platforms/linux/launcher.py @@ -147,7 +147,7 @@ class LinuxLauncher(Launcher): def check_returncode(self): # type: () -> None """ - Checks the returncode of the launcher if it exists. Raises a CrashError if the returncode is non-zero. Returns + Checks the return code of the launcher if it exists. Raises a CrashError if the returncode is non-zero. Returns None otherwise. This function must be called after exiting the launcher properly and NOT using its provided teardown(). Provided teardown() will always return a non-zero returncode and should not be checked.