From a00814d849361504753327a61fe650e22dea24f6 Mon Sep 17 00:00:00 2001 From: ruthra kumar Date: Fri, 16 May 2025 14:16:29 +0530 Subject: [PATCH] refactor(test): IntegraionTestCase -> python's built-in TestCase --- erpnext/tests/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/erpnext/tests/utils.py b/erpnext/tests/utils.py index 7dedd637d3c..5e42fb810e7 100644 --- a/erpnext/tests/utils.py +++ b/erpnext/tests/utils.py @@ -1,6 +1,7 @@ # Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors # License: GNU General Public License v3. See license.txt +import unittest from typing import Any, NewType import frappe @@ -117,7 +118,7 @@ def if_lending_app_not_installed(function): return wrapper -class ERPNextTestSuite(IntegrationTestCase): +class ERPNextTestSuite(unittest.TestCase): @classmethod def setUpClass(cls): super().setUpClass()