We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77be9d0 commit 11dfd03Copy full SHA for 11dfd03
1 file changed
README.md
@@ -74,7 +74,7 @@ def parse_log_tinydb(log: str) -> dict[str, str]:
74
pattern = r"^(.*\/.*)::(.*)\s+\w+\s+\[\s*(\d+%)\]$"
75
for line in log.split("\n"):
76
line = line.strip()
77
- m = re.match(pattern, string)
+ m = re.match(pattern, line)
78
if m:
79
line = line.split('[')[0].strip()
80
test, value = line.split(' ')
0 commit comments