mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-22 00:31:44 +00:00
Fix mutation report anchors
This commit is contained in:
parent
c4d964f460
commit
f16529eb23
1 changed files with 1 additions and 1 deletions
|
|
@ -265,7 +265,7 @@ def render(config: dict, survivors: list[str], stats: dict | None) -> str:
|
|||
out.append("## Surviving mutants by function")
|
||||
out.append("")
|
||||
for (module_path, function_name), items in by_function.items():
|
||||
anchor = f"{function_name.lower().replace('_', '-')}"
|
||||
anchor = function_name.lower()
|
||||
out.append(
|
||||
f"- [`{function_name}`](#{anchor}) — {len(items)} mutant"
|
||||
f"{'s' if len(items) != 1 else ''} ({module_path})"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue