From 0f0eb15a238ae5ff9fe9ab8840146c31a7a1183e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Duy=20=28=C4=90=E1=BB=97=20Anh=29?= Date: Thu, 14 Nov 2024 11:05:38 +0700 Subject: [PATCH] [IMP] account_statement_base: no need to depend on account_reconcile_model_oca tests --- .../tests/test_account_statement_base.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/account_statement_base/tests/test_account_statement_base.py b/account_statement_base/tests/test_account_statement_base.py index 40018c3e7..891915468 100644 --- a/account_statement_base/tests/test_account_statement_base.py +++ b/account_statement_base/tests/test_account_statement_base.py @@ -1,16 +1,15 @@ from odoo import Command from odoo.tests import tagged -from odoo.addons.account_reconcile_model_oca.tests.common import ( - TestAccountReconciliationCommon, -) +from odoo.addons.account.tests.common import AccountTestInvoicingCommon @tagged("post_install", "-at_install") -class TestReconciliationWidget(TestAccountReconciliationCommon): +class TestOpenEntries(AccountTestInvoicingCommon): @classmethod def setUpClass(cls): super().setUpClass() + cls.company = cls.company_data["company"] cls.acc_bank_stmt_model = cls.env["account.bank.statement"] cls.account_move_model = cls.env["account.move"] cls.account_move_line_model = cls.env["account.move.line"]