Skip to content

Commit 5673faa

Browse files
Bugfix, id's should not be uppercase
1 parent a38446d commit 5673faa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/extensions/score_source_code_linker/xml_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ def construct_and_add_need(app: Sphinx, tn: DataOfTestCase):
356356
need_type="testcase",
357357
title=tn.name,
358358
tags="TEST",
359-
id=f"testcase__{tn.name}_{short_hash(tn.file + tn.name).upper()}",
359+
id=f"testcase__{tn.name}_{short_hash(tn.file + tn.name)}",
360360
name=tn.name,
361361
external_url=get_github_link(metadata, tn),
362362
fully_verifies=tn.FullyVerifies if tn.FullyVerifies is not None else "",

0 commit comments

Comments
 (0)