Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements.check.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ coverage>=5.4
# httpx is needed for running server-related unit tests.
httpx
# This is needed for converting Gcov coverage files to a human-readable JSON format.
gcovr
gcovr>=8.3

# Integration tests
lit>=0.11.0.post1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def read_from_string(
file_section.section_contents.append(non_covered_functions_section)

for json_function_ in json_file_["functions"]:
json_function_name = json_function_["demangled_name"]
json_function_name = json_function_["name"]
is_function_covered = json_function_["execution_count"] > 0
stats.add_function(is_function_covered)

Expand Down
Loading