mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-03 12:19:12 +00:00
refactor(test): IntegraionTestCase -> python's built-in TestCase
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors
|
# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors
|
||||||
# License: GNU General Public License v3. See license.txt
|
# License: GNU General Public License v3. See license.txt
|
||||||
|
|
||||||
|
import unittest
|
||||||
from typing import Any, NewType
|
from typing import Any, NewType
|
||||||
|
|
||||||
import frappe
|
import frappe
|
||||||
@@ -117,7 +118,7 @@ def if_lending_app_not_installed(function):
|
|||||||
return wrapper
|
return wrapper
|
||||||
|
|
||||||
|
|
||||||
class ERPNextTestSuite(IntegrationTestCase):
|
class ERPNextTestSuite(unittest.TestCase):
|
||||||
@classmethod
|
@classmethod
|
||||||
def setUpClass(cls):
|
def setUpClass(cls):
|
||||||
super().setUpClass()
|
super().setUpClass()
|
||||||
|
|||||||
Reference in New Issue
Block a user