From 8c6ff8e7ac4976913d216d11174ac748523ea8e5 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 --- stock_demand_estimate/tests/test_stock_demand_estimate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stock_demand_estimate/tests/test_stock_demand_estimate.py b/stock_demand_estimate/tests/test_stock_demand_estimate.py index ff5711588..fafe0f034 100644 --- a/stock_demand_estimate/tests/test_stock_demand_estimate.py +++ b/stock_demand_estimate/tests/test_stock_demand_estimate.py @@ -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()