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 8aaf391 commit 206802eCopy full SHA for 206802e
tests/test_flake8_force.py
@@ -20,7 +20,7 @@ def _flake8(test_input, *, cython=False, force=False):
20
results = []
21
for line in proc.stdout.splitlines():
22
m = re.fullmatch(r"(.+?):(\d+):(\d+): (.+?) (.+?)", line)
23
- assert m is not None, f'unexpected output: {line}'
+ assert m is not None, f'unexpected output: {proc.stdout}'
24
results.append(
25
(int(m.group(2)), int(m.group(3)), m.group(4), m.group(5)))
26
return results
0 commit comments