refactor(test): IntegraionTestCase -> python's built-in TestCase

This commit is contained in:
ruthra kumar
2025-05-16 14:16:29 +05:30
parent 3cee89d827
commit a00814d849

View File

@@ -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()