Skip to content

Commit ca14f3a

Browse files
authored
Convert testcase IDs to strings before joining. (#4669)
Fix for a bug introduced by #4656.
1 parent d44c5aa commit ca14f3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/clusterfuzz/_internal/cron/grouper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def combine_testcases_into_group(
9595
for testcase in testcase_map.values():
9696
if testcase.group_id == group_id_to_move:
9797
testcase.group_id = group_id_to_reuse
98-
moved_testcase_ids.append(testcase.id)
98+
moved_testcase_ids.append(str(testcase.id))
9999

100100
logs.info(f'Merged group {group_id_to_move} into {group_id_to_reuse}: ' +
101101
'moved testcases: ' + ', '.join(moved_testcase_ids))

0 commit comments

Comments
 (0)