We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7335d8e commit f771b42Copy full SHA for f771b42
account_payment_mode_auto_reconcile/tests/test_partner_auto_reconcile.py
@@ -2,15 +2,15 @@
2
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl)
3
from datetime import date, timedelta
4
5
-from odoo.tests import TransactionCase
6
from odoo.tools import DEFAULT_SERVER_DATE_FORMAT as DATE_FORMAT
7
+from odoo.addons.base.tests.common import BaseCommon
8
9
-class TestPartnerAutoReconcile(TransactionCase):
+
10
+class TestPartnerAutoReconcile(BaseCommon):
11
@classmethod
12
def setUpClass(cls):
- super(TestPartnerAutoReconcile, cls).setUpClass()
13
- cls.env = cls.env(context=dict(cls.env.context, tracking_disable=True))
+ super().setUpClass()
14
cls.acc_rec = cls.env["account.account"].create(
15
{
16
"name": "Receivable",
0 commit comments