Merge pull request #43537 from blaggacao/test-refactoring/test-bank-account-type-py

Refactor: Use IntegrationTestCase in test_bank_account_type.py
This commit is contained in:
David Arnold
2024-10-07 22:44:40 +02:00
committed by GitHub

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