Tests: minor fixes.

This commit is contained in:
Andrei Zeliankou
2020-10-07 23:18:43 +01:00
parent 645683f432
commit 6ec0ff3596
46 changed files with 128 additions and 98 deletions

View File

@@ -51,7 +51,7 @@ class TestProxyChunked(TestApplicationPython):
for line in re.split('\r\n', body):
add = ''
m1 = re.search('(.*)\sX\s(\d+)', line)
m1 = re.search(r'(.*)\sX\s(\d+)', line)
if m1 is not None:
add = m1.group(1) * int(m1.group(2))