From 3394dc83ecf6691df58a213443b19bf91b60ed1d Mon Sep 17 00:00:00 2001 From: Antonio Melo Jr Date: Thu, 19 Sep 2024 11:00:43 -0300 Subject: [PATCH] Updating TestDecoratorHooks with endpoint as well. --- src/python_testing/test_testing/TestDecorators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python_testing/test_testing/TestDecorators.py b/src/python_testing/test_testing/TestDecorators.py index 1ad5bc550bc237..82b49eddd86953 100644 --- a/src/python_testing/test_testing/TestDecorators.py +++ b/src/python_testing/test_testing/TestDecorators.py @@ -86,7 +86,7 @@ def test_stop(self, exception: Exception, duration: int): def step_skipped(self, name: str, expression: str): pass - def step_start(self, name: str): + def step_start(self, name: str, endpoint: Optional[int] = None): pass def step_success(self, logger, logs, duration: int, request):