diff --git a/README.md b/README.md
index da9a0d92b4..cf18ce59c9 100644
--- a/README.md
+++ b/README.md
@@ -27,7 +27,7 @@ addon | version | maintainers | summary
[queue_job_cron](queue_job_cron/) | 18.0.1.1.1 | | Scheduled Actions as Queue Jobs
[queue_job_cron_jobrunner](queue_job_cron_jobrunner/) | 18.0.1.0.1 |
| Run jobs without a dedicated JobRunner
[queue_job_subscribe](queue_job_subscribe/) | 18.0.1.0.0 | | Control which users are subscribed to queue job notifications
-[test_queue_job](test_queue_job/) | 18.0.2.0.3 |
| Queue Job Tests
+[test_queue_job](test_queue_job/) | 18.0.2.0.4 |
| Queue Job Tests
[test_queue_job_batch](test_queue_job_batch/) | 18.0.1.0.0 | | Test Job Queue Batch
[//]: # (end addons)
diff --git a/queue_job/i18n/tr.po b/queue_job/i18n/tr.po
index b2b41d95de..f70ee828e5 100644
--- a/queue_job/i18n/tr.po
+++ b/queue_job/i18n/tr.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-06-16 17:26+0000\n"
+"PO-Revision-Date: 2026-01-21 16:51+0000\n"
"Last-Translator: Betül Öğmen \n"
"Language-Team: none\n"
"Language: tr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.10.4\n"
+"X-Generator: Weblate 5.15.2\n"
#. module: queue_job
#: model_terms:ir.ui.view,arch_db:queue_job.view_queue_job_form
@@ -661,7 +661,7 @@ msgstr "Kuyruk İşi"
#. module: queue_job
#: model:ir.model,name:queue_job.model_queue_job_lock
msgid "Queue Job Lock"
-msgstr ""
+msgstr "Kuyruk İş Kilidi"
#. module: queue_job
#: model:ir.model.fields,field_description:queue_job.field_queue_job__records
diff --git a/test_queue_job/__manifest__.py b/test_queue_job/__manifest__.py
index 73db3ad122..449c4c7161 100644
--- a/test_queue_job/__manifest__.py
+++ b/test_queue_job/__manifest__.py
@@ -3,7 +3,7 @@
{
"name": "Queue Job Tests",
- "version": "18.0.2.0.3",
+ "version": "18.0.2.0.4",
"author": "Camptocamp,Odoo Community Association (OCA)",
"license": "LGPL-3",
"category": "Generic Modules",
diff --git a/test_queue_job/models/test_models.py b/test_queue_job/models/test_models.py
index 03e8e8a8f9..494512cb49 100644
--- a/test_queue_job/models/test_models.py
+++ b/test_queue_job/models/test_models.py
@@ -139,6 +139,13 @@ def _register_hook(self):
)
return super()._register_hook()
+ def _unregister_hook(self):
+ """Remove the patches installed by _register_hook()"""
+ self._revert_method("delay_me")
+ self._revert_method("delay_me_options")
+ self._revert_method("delay_me_context_key")
+ return super()._unregister_hook()
+
def _job_store_values(self, job):
value = "JUST_TESTING"
if job.state == "failed":