From 96c59e0435e7c84d12fbc27e8108585781c43eec Mon Sep 17 00:00:00 2001 From: ruthra kumar Date: Mon, 28 Jul 2025 15:48:41 +0530 Subject: [PATCH] refactor(test): fix test data; no double counting --- .../customer_ledger_summary/test_customer_ledger_summary.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/accounts/report/customer_ledger_summary/test_customer_ledger_summary.py b/erpnext/accounts/report/customer_ledger_summary/test_customer_ledger_summary.py index cfe627edbbb..78174b097bd 100644 --- a/erpnext/accounts/report/customer_ledger_summary/test_customer_ledger_summary.py +++ b/erpnext/accounts/report/customer_ledger_summary/test_customer_ledger_summary.py @@ -188,8 +188,8 @@ class TestCustomerLedgerSummary(AccountsTestMixin, IntegrationTestCase): "customer_name": "_Test Customer", "party_name": "_Test Customer", "opening_balance": 0, - "invoiced_amount": 200.0, - "paid_amount": 100.0, + "invoiced_amount": 100.0, + "paid_amount": 0.0, "return_amount": 100.0, "closing_balance": 0.0, "currency": "INR",