test: Fixes in test case
diff --git a/erpnext/accounts/doctype/bank_clearance/test_bank_clearance.py b/erpnext/accounts/doctype/bank_clearance/test_bank_clearance.py
index c09aa1c..18645c7 100644
--- a/erpnext/accounts/doctype/bank_clearance/test_bank_clearance.py
+++ b/erpnext/accounts/doctype/bank_clearance/test_bank_clearance.py
@@ -27,6 +27,8 @@
@classmethod
def tearDownClass(cls):
+ frappe.db.set_single_value("Accounts Settings", "delete_linked_ledger_entries", 1)
+
payment_entry = frappe.get_doc(
"Payment Entry", {"party_name": "_Test Supplier", "paid_from": "_Test Bank Clearance - _TC"}
)
@@ -63,6 +65,8 @@
loan.flags.ignore_links = True
loan.delete()
+ frappe.db.set_single_value("Accounts Settings", "delete_linked_ledger_entries", 0)
+
# Basic test case to test if bank clearance tool doesn't break
# Detailed test can be added later
def test_bank_clearance(self):