From cbfd780b2775b2be3ad504e5e7870ac4bd85dc8d Mon Sep 17 00:00:00 2001 From: Saran440 Date: Fri, 19 Dec 2025 13:44:59 +0700 Subject: [PATCH] [FIX] account_payment_multi_deduction_budget_plan_detail: test script --- .../tests/test_payment_multi_deduction_budget.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/account_payment_multi_deduction_budget_plan_detail/tests/test_payment_multi_deduction_budget.py b/account_payment_multi_deduction_budget_plan_detail/tests/test_payment_multi_deduction_budget.py index 843f79cc..b3986bc8 100644 --- a/account_payment_multi_deduction_budget_plan_detail/tests/test_payment_multi_deduction_budget.py +++ b/account_payment_multi_deduction_budget_plan_detail/tests/test_payment_multi_deduction_budget.py @@ -98,7 +98,7 @@ def test_01_one_invoice_payment_fully_paid(self): } ) payment = wizard._create_payments() - self.assertEqual(payment.state, "paid") + self.assertEqual(payment.state, "in_process") writeoff = payment.move_id.line_ids.filtered(lambda line: line.is_writeoff) self.assertEqual(len(writeoff), 1) @@ -161,7 +161,7 @@ def test_02_one_invoice_payment_multi_deduction(self): ) payment = wizard._create_payments() - self.assertEqual(payment.state, "paid") + self.assertEqual(payment.state, "in_process") writeoff = payment.move_id.line_ids.filtered(lambda line: line.is_writeoff) self.assertEqual(len(writeoff), 2)