From 22cfdd694eca942a2a8ea7f231ad1496a65c520e Mon Sep 17 00:00:00 2001 From: sniedzielski Date: Wed, 11 Dec 2024 15:49:55 +0100 Subject: [PATCH] test ci check --- grievance_social_protection/validations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grievance_social_protection/validations.py b/grievance_social_protection/validations.py index 51279b0..60957b7 100644 --- a/grievance_social_protection/validations.py +++ b/grievance_social_protection/validations.py @@ -79,7 +79,7 @@ def validate_commenter_associated_with_ticket(data): reporter_tickets = Ticket.objects.filter(reporter_type=commenter_type, reporter_id=commenter_id) if reporter_tickets.exists(): return [] - + print('test') return [{"message": _("validations.CommentValidation.commenter_not_associated_with_ticket")}]