refactor: Use IntegrationTestCase in test_bank_account_subtype.py

Signed-off-by: David <dgx.arnold@gmail.com>
This commit is contained in:
David
2024-10-07 22:04:16 +02:00
parent cd112795d3
commit 9979efce56

View File

@@ -1,8 +1,9 @@
# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors
# See license.txt
import unittest
from frappe.tests import IntegrationTestCase
class TestBankAccountSubtype(unittest.TestCase):
class TestBankAccountSubtype(IntegrationTestCase):
pass