From ad972d5d710b0a1bcb55cf969482af68dacc7f34 Mon Sep 17 00:00:00 2001 From: Cedric Collins Date: Sun, 16 Jan 2022 22:43:50 -0600 Subject: [PATCH] [MIG] sale_exception_user: bump version and change deprecated SavepointCase to TransactionCase --- sale_exception_user/__manifest__.py | 2 +- sale_exception_user/tests/test_sale_exception_user.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sale_exception_user/__manifest__.py b/sale_exception_user/__manifest__.py index 8cb213de..fc10e57c 100644 --- a/sale_exception_user/__manifest__.py +++ b/sale_exception_user/__manifest__.py @@ -2,7 +2,7 @@ { 'name': 'Sale Exception Rule User', - 'version': '14.0.1.0.0', + 'version': '15.0.1.0.0', 'author': 'Hibou Corp.', 'license': 'OPL-1', 'category': 'Generic Modules', diff --git a/sale_exception_user/tests/test_sale_exception_user.py b/sale_exception_user/tests/test_sale_exception_user.py index 0e1175a8..4033df8d 100644 --- a/sale_exception_user/tests/test_sale_exception_user.py +++ b/sale_exception_user/tests/test_sale_exception_user.py @@ -1,9 +1,9 @@ # Part of Hibou Suite Professional. See LICENSE_PROFESSIONAL file for full copyright and licensing details. -from odoo.tests import Form, SavepointCase +from odoo.tests import Form, TransactionCase -class TestSaleException(SavepointCase): +class TestSaleException(TransactionCase): @classmethod def setUpClass(cls): super().setUpClass()