refactor: Use IntegrationTestCase in test_bank_account_type.py

Signed-off-by: David <dgx.arnold@gmail.com>
This commit is contained in:
David
2024-10-07 22:24:29 +02:00
parent cd112795d3
commit 36ae2436a3

View File

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