From 08a01dcabe4b63122c2fdfb45e63c8e1cd4969ed Mon Sep 17 00:00:00 2001 From: Romulo Quidute Filho Date: Thu, 7 Dec 2023 17:16:34 +0000 Subject: [PATCH] Fix test name parameter --- .../sdk_tests/support/python_testing/models/test_case.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_collections/sdk_tests/support/python_testing/models/test_case.py b/test_collections/sdk_tests/support/python_testing/models/test_case.py index 7686ed28..81e35b2f 100644 --- a/test_collections/sdk_tests/support/python_testing/models/test_case.py +++ b/test_collections/sdk_tests/support/python_testing/models/test_case.py @@ -208,7 +208,7 @@ async def execute(self) -> None: test_runner_hooks = manager.TestRunnerHooks() # type: ignore runner_class = RUNNER_CLASS_PATH + RUNNER_CLASS - command = [f"{runner_class} {self.metadata['title']}"] + command = [f"{runner_class} {self.python_test.name}"] # Generate the command argument by getting the test_parameters from # project configuration