refactor: Use IntegrationTestCase in test_bank.py

Signed-off-by: David <dgx.arnold@gmail.com>
This commit is contained in:
David
2024-10-07 21:23:52 +02:00
parent cd112795d3
commit f0c433de9f

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 TestBank(unittest.TestCase):
class TestBank(IntegrationTestCase):
pass