From eaed96ac9f52293a322b2141e00d010039148025 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Mart=C3=ADnez?= Date: Wed, 2 Nov 2022 11:10:33 +0100 Subject: [PATCH] [FIX] stock_demand_estimate: Change SavepointCase to TransactionCase --- .../tests/test_stock_demand_estimate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stock_demand_estimate_matrix/tests/test_stock_demand_estimate.py b/stock_demand_estimate_matrix/tests/test_stock_demand_estimate.py index e33457216..880e04f30 100644 --- a/stock_demand_estimate_matrix/tests/test_stock_demand_estimate.py +++ b/stock_demand_estimate_matrix/tests/test_stock_demand_estimate.py @@ -5,10 +5,10 @@ from dateutil.rrule import MONTHLY from odoo import fields from odoo.exceptions import ValidationError -from odoo.tests.common import SavepointCase +from odoo.tests.common import TransactionCase -class TestStockDemandEstimate(SavepointCase): +class TestStockDemandEstimate(TransactionCase): @classmethod def setUpClass(cls): super().setUpClass()