Skip to content

Commit

Permalink
Fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vitorguidi committed Dec 8, 2024
1 parent 64470a0 commit 6e9bc64
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/clusterfuzz/_internal/cron/grouper.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,9 +426,10 @@ def group_testcases():
try:
issue_tracker = issue_tracker_utils.get_issue_tracker_for_testcase(
testcase)
logs.info(
f'Running grouping with issue tracker {issue_tracker.project}, '
f' for testcase {testcase_id}')
if issue_tracker:
logs.info(
f'Running grouping with issue tracker {issue_tracker.project}, '
f' for testcase {testcase_id}')
except ValueError:
logs.error('Couldn\'t get issue tracker for issue.')
del testcase_map[testcase_id]
Expand Down

0 comments on commit 6e9bc64

Please sign in to comment.