Skip to content

Commit

Permalink
OP-2219: fixed argument in ticket test payload
Browse files Browse the repository at this point in the history
  • Loading branch information
sniedzielski committed Dec 10, 2024
1 parent c6b85d8 commit 68c4d66
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions grievance_social_protection/tests/test_gql_ticket_create.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def test_create_ticket_success(self):
self.category,
self.title,
self.resolution,
self.gender_id,
self.priority,
self.date_of_incident,
self.channel,
self.flags,
Expand All @@ -77,7 +77,7 @@ def test_create_ticket_false_invalid_resolution_format(self):
self.category,
self.title,
"kjdslkdjslk",
self.gender_id,
self.priority,
self.date_of_incident,
self.channel,
self.flags,
Expand All @@ -96,7 +96,7 @@ def test_create_ticket_false_invalid_resolution_day_format(self):
self.category,
self.title,
"99,3",
self.gender_id,
self.priority,
self.date_of_incident,
self.channel,
self.flags,
Expand All @@ -115,7 +115,7 @@ def test_create_ticket_false_invalid_resolution_hour_format(self):
self.category,
self.title,
"4,66",
self.gender_id,
self.priority,
self.date_of_incident,
self.channel,
self.flags,
Expand Down
8 changes: 4 additions & 4 deletions grievance_social_protection/tests/test_gql_ticket_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def test_update_ticket_success(self):
self.category,
self.title,
self.resolution,
self.gender_id,
self.priority,
self.date_of_incident,
self.channel,
self.flags,
Expand All @@ -83,7 +83,7 @@ def test_update_ticket_false_invalid_resolution_format(self):
self.category,
self.title,
"kjdslkdjslk",
self.gender_id,
self.priority,
self.date_of_incident,
self.channel,
self.flags,
Expand All @@ -104,7 +104,7 @@ def test_update_ticket_false_invalid_resolution_day_format(self):
self.category,
self.title,
"99,3",
self.gender_id,
self.priority,
self.date_of_incident,
self.channel,
self.flags,
Expand All @@ -125,7 +125,7 @@ def test_update_ticket_false_invalid_resolution_hour_format(self):
self.category,
self.title,
"4,66",
self.gender_id,
self.priority,
self.date_of_incident,
self.channel,
self.flags,
Expand Down

0 comments on commit 68c4d66

Please sign in to comment.