[FIX] attachment_zipped_download: Change SavepointCase to TransactionCase

This commit is contained in:
Víctor Martínez
2024-12-18 13:38:38 +01:00
parent da81ac1948
commit a3aa2fdbbd
2 changed files with 4 additions and 4 deletions

View File

@@ -3,12 +3,12 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from odoo_test_helper import FakeModelLoader
from odoo.tests import SavepointCase
from odoo.tests import TransactionCase
from .test_attachment_zipped_download import TestAttachmentZippedDownloadBase
class TestMixin(SavepointCase, TestAttachmentZippedDownloadBase):
class TestMixin(TransactionCase, TestAttachmentZippedDownloadBase):
@classmethod
def setUpClass(cls):
super().setUpClass()