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 e889843 commit 4de3812Copy full SHA for 4de3812
absl/logging/tests/logging_functional_test.py
@@ -220,9 +220,11 @@ def _munge_log(buf):
220
buf)
221
222
# Verify thread id is logged as a non-negative quantity.
223
- matched = re.match(r'(?m)^(\w)(\d\d\d\d \d\d:\d\d:\d\d\.\d\d\d\d\d\d) '
224
- r'([ ]*-?[0-9a-fA-f]+ )?([a-zA-Z<][\w._<>-]+):(\d+)',
225
- buf)
+ matched = re.match(
+ r'(?m)^(\w)(\d\d\d\d \d\d:\d\d:\d\d\.\d\d\d\d\d\d) '
+ r'([ ]*-?[0-9a-fA-F]+ )?([a-zA-Z<][\w._<>-]+):(\d+)',
226
+ buf,
227
+ )
228
if matched:
229
threadid = matched.group(3)
230
if int(threadid) < 0:
0 commit comments