From f0c433de9fa023596ff06e649fee81203b01138a Mon Sep 17 00:00:00 2001 From: David Date: Mon, 7 Oct 2024 21:23:52 +0200 Subject: [PATCH] refactor: Use IntegrationTestCase in test_bank.py Signed-off-by: David --- erpnext/accounts/doctype/bank/test_bank.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/erpnext/accounts/doctype/bank/test_bank.py b/erpnext/accounts/doctype/bank/test_bank.py index 5ca0e999bfb..98e83fd5837 100644 --- a/erpnext/accounts/doctype/bank/test_bank.py +++ b/erpnext/accounts/doctype/bank/test_bank.py @@ -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