We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d797352 commit 7574b63Copy full SHA for 7574b63
runner/sensei.py
@@ -60,7 +60,7 @@ def sortFailures(self, testClassName):
60
table = list()
61
for test, err in self.failures:
62
if helper.cls_name(test) == testClassName:
63
- m = re.search("(?<= line )\d+" ,err)
+ m = re.search(r"(?<= line )\d+" ,err)
64
if m:
65
tup = (int(m.group(0)), test, err)
66
table.append(tup)
@@ -146,7 +146,7 @@ def scrapeInterestingStackDump(self, err):
146
if m and m.group(0):
147
stack_text += '\n' + line
148
149
- m = re.search("^ \w(\w)+.*$",line)
+ m = re.search(r"^ \w(\w)+.*$",line)
150
151
stack_text += sep + line
152
0 commit comments