diff --git a/helpdesk_mgmt_sla/__manifest__.py b/helpdesk_mgmt_sla/__manifest__.py index 70735d3489..8546b5f980 100644 --- a/helpdesk_mgmt_sla/__manifest__.py +++ b/helpdesk_mgmt_sla/__manifest__.py @@ -7,7 +7,7 @@ "website": "https://github.com/OCA/helpdesk", "license": "AGPL-3", "category": "After-Sales", - "version": "14.0.2.0.1", + "version": "15.0.1.0.0", "depends": ["base", "helpdesk_mgmt", "resource"], "data": [ "data/helpdesk_sla_cron.xml", diff --git a/helpdesk_mgmt_sla/tests/common.py b/helpdesk_mgmt_sla/tests/common.py index 8aa6d4c117..7b77b358a7 100644 --- a/helpdesk_mgmt_sla/tests/common.py +++ b/helpdesk_mgmt_sla/tests/common.py @@ -25,6 +25,8 @@ def setUpClass(cls): "use_sla": True, } ) + cls.stage1.team_ids = [(6, 0, [cls.team1.id, cls.team2.id])] + cls.stage2.team_ids = [(6, 0, [cls.team1.id, cls.team2.id])] cls.category1 = cls.env["helpdesk.ticket.category"].create( {"name": "Category One"} )