From 87cab904517b1fb73d16ad0e741622c4dd3ac211 Mon Sep 17 00:00:00 2001 From: David Date: Mon, 7 Oct 2024 23:53:15 +0200 Subject: [PATCH] refactor: Use IntegrationTestCase in test_bank_guarantee.py Signed-off-by: David --- .../accounts/doctype/bank_guarantee/test_bank_guarantee.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/erpnext/accounts/doctype/bank_guarantee/test_bank_guarantee.py b/erpnext/accounts/doctype/bank_guarantee/test_bank_guarantee.py index b992c6ad1db..eaf55ce7708 100644 --- a/erpnext/accounts/doctype/bank_guarantee/test_bank_guarantee.py +++ b/erpnext/accounts/doctype/bank_guarantee/test_bank_guarantee.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 TestBankGuarantee(unittest.TestCase): + +class TestBankGuarantee(IntegrationTestCase): pass