Merge pull request #43539 from blaggacao/test-refactoring/test-bank-guarantee-py

Refactor: Use IntegrationTestCase in test_bank_guarantee.py
This commit is contained in:
David Arnold
2024-10-08 00:12:30 +02:00
committed by GitHub

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