From 674865120b3d167532ce23e54cd41a26cf8763d1 Mon Sep 17 00:00:00 2001 From: Dhanya Thattil Date: Wed, 7 May 2025 16:03:43 +0200 Subject: [PATCH] typo --- tests/scripts/utils_for_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/utils_for_test.py b/tests/scripts/utils_for_test.py index 5f209899a..389bfad4a 100644 --- a/tests/scripts/utils_for_test.py +++ b/tests/scripts/utils_for_test.py @@ -71,7 +71,7 @@ def killProcess(name, fp): if p.returncode != 0 and bool(checkIfProcessRunning(name)): raise RuntimeException(f"Could not kill {name} with pid {pid}") except Exception as e: - raise RuntimeException(f"Failed to kill process {name} pid:{pid}. Error: {str(e)}]") from e + raise RuntimeException(f"Failed to kill process {name} pid:{pid}. Error: {str(e)}") from e #else: # Log(LogLevel.INFO, 'process not running : ' + name)