Skip to content

Commit

Permalink
[FIX] queue_job: fix test cases from TestDelayable being skipped
Browse files Browse the repository at this point in the history
  • Loading branch information
thienvh332 committed Oct 21, 2024
1 parent 2ef1902 commit e97661f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions queue_job/tests/test_delayable.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# copyright 2019 Camptocamp
# license agpl-3.0 or later (http://www.gnu.org/licenses/agpl.html)

import unittest
from unittest import mock

from odoo.tests import common

from odoo.addons.queue_job.delay import Delayable, DelayableGraph


class TestDelayable(unittest.TestCase):
class TestDelayable(common.BaseCase):
def setUp(self):
super().setUp()
self.recordset = mock.MagicMock(name="recordset")
Expand Down

0 comments on commit e97661f

Please sign in to comment.