Skip to content

Commit f46a0f3

Browse files
committed
improve report
1 parent 6ce6c8b commit f46a0f3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

fuzz.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def parse_cost(output: str):
115115
res = dict()
116116
for line in output.splitlines():
117117
k, v = line.strip().split(" ")
118-
res[k] = int(v)
118+
res[k.removesuffix(":")] = int(v)
119119
return res
120120

121121

fuzz_existing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def parse_cost(output: str):
8888
res = dict()
8989
for line in output.splitlines():
9090
k, v = line.strip().split(" ")
91-
res[k] = int(v)
91+
res[k.removesuffix(":")] = int(v)
9292
return res
9393

9494

0 commit comments

Comments
 (0)