Skip to content

Commit

Permalink
[MIG] base_recurrence: Migration to 14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyasProgrammer committed Aug 10, 2023
1 parent f99d523 commit 4141bf1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion base_recurrence/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"name": "Base Recurrence",
"summary": """
Allows to define base methods for recurrence computation""",
"version": "15.0.1.0.0",
"version": "14.0.1.0.0",
"license": "AGPL-3",
"maintainers": ["rousseldenis"],
"author": "ACSONE SA/NV,Odoo Community Association (OCA)",
Expand Down
4 changes: 4 additions & 0 deletions base_recurrence/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
* Denis Roussel <denis.roussel@acsone.eu>

* `Ooops404 <https://www.ooops404.com>`__:

* Ilyas <irazor147@gmail.com>
6 changes: 3 additions & 3 deletions base_recurrence/tests/test_recurrence.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
from odoo_test_helper import FakeModelLoader

from odoo import fields
from odoo.tests.common import TransactionCase
from odoo.tests.common import SavepointCase


class RecurrenceTestCommon(TransactionCase):
class RecurrenceTestCommon(SavepointCase):
@classmethod
def setUpClass(cls):
super().setUpClass()
super(RecurrenceTestCommon, cls).setUpClass()
cls.loader = FakeModelLoader(cls.env, cls.__module__)
cls.loader.backup_registry()

Expand Down

0 comments on commit 4141bf1

Please sign in to comment.