[FIX] stock_demand_estimate: Change SavepointCase to TransactionCase

This commit is contained in:
Víctor Martínez
2022-11-02 11:10:33 +01:00
parent d60ee97e44
commit d0cfe130c4
2 changed files with 4 additions and 4 deletions

View File

@@ -3,10 +3,10 @@
from datetime import date, timedelta as td
from odoo.tests.common import SavepointCase
from odoo.tests.common import TransactionCase
class TestStockDemandEstimate(SavepointCase):
class TestStockDemandEstimate(TransactionCase):
@classmethod
def setUpClass(cls):
super().setUpClass()

View File

@@ -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()