Skip to content

Commit

Permalink
Fix tests for python 3.8 (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioFuchsTT committed Sep 18, 2024
1 parent e9024b7 commit ac1b742
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions testguide_report_generator/model/TestCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def set_defect_priority(self, priority: str):
self.__defect_priority = priority
return self

def add_tickets(self, tickets: list[str]):
def add_tickets(self, tickets: List[str]):
"""
Add tickets to the review.
Expand Down Expand Up @@ -324,7 +324,7 @@ def set_custom_evaluation(self, evaluation: str):
self.__custom_evaluation = evaluation
return self

def add_tags(self, tags: list[str]):
def add_tags(self, tags: List[str]):
"""
Add multiple tags to the review.
Expand All @@ -336,7 +336,7 @@ def add_tags(self, tags: list[str]):
self.__tags.extend(tags)
return self

def add_contacts(self, contacts: list[str]):
def add_contacts(self, contacts: List[str]):
"""Add contacts to the review.
:param contacts: list of Review contacts
Expand Down

0 comments on commit ac1b742

Please sign in to comment.