forked from OCA/edi-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] edi_exchange_template_oca: Change SavepointCase to TransactionCase
- Loading branch information
1 parent
62c430a
commit f102596
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Copyright 2022 Camptocamp SA | ||
# @author Simone Orsi <[email protected]> | ||
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). | ||
from odoo.tests.common import SavepointCase | ||
from odoo.tests.common import TransactionCase | ||
from odoo.tools import pycompat | ||
|
||
from ..utils import xml_purge_nswrapper | ||
|
@@ -42,7 +42,7 @@ | |
""" | ||
|
||
|
||
class TestNSWrapper(SavepointCase): | ||
class TestNSWrapper(TransactionCase): | ||
maxDiff = None | ||
|
||
def test_purge1(self): | ||
|