From a755f5acd30610ef05baeb39cd570f8a8567275a Mon Sep 17 00:00:00 2001 From: ruthra kumar Date: Wed, 9 Jul 2025 15:05:08 +0530 Subject: [PATCH] refactor: remove duplicate call to start test --- frappe/testing/result.py | 1 - 1 file changed, 1 deletion(-) diff --git a/frappe/testing/result.py b/frappe/testing/result.py index b2486da02a..e144291a2e 100644 --- a/frappe/testing/result.py +++ b/frappe/testing/result.py @@ -187,7 +187,6 @@ class FrappeTestResult(unittest.TextTestResult): def startTest(self, test): self.tb_locals = True self._started_at = time.monotonic() - super().startTest(test) super(unittest.TextTestResult, self).startTest(test) test_class = unittest.util.strclass(test.__class__) if not hasattr(self, "current_test_class") or self.current_test_class != test_class: