diff options
author | Andrei Zeliankou <zelenkov@nginx.com> | 2020-10-07 23:18:43 +0100 |
---|---|---|
committer | Andrei Zeliankou <zelenkov@nginx.com> | 2020-10-07 23:18:43 +0100 |
commit | 6ec0ff35964c7805712d978625949f72ff5a63bc (patch) | |
tree | f64a1901993fbc7e6a75ca6335fbbd291c8cce56 /test/test_proxy_chunked.py | |
parent | 645683f432d742f42f2769f589fe769585fb7aa0 (diff) | |
download | unit-6ec0ff35964c7805712d978625949f72ff5a63bc.tar.gz unit-6ec0ff35964c7805712d978625949f72ff5a63bc.tar.bz2 |
Tests: minor fixes.
Diffstat (limited to 'test/test_proxy_chunked.py')
-rw-r--r-- | test/test_proxy_chunked.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_proxy_chunked.py b/test/test_proxy_chunked.py index 93746703..26023617 100644 --- a/test/test_proxy_chunked.py +++ b/test/test_proxy_chunked.py @@ -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)) |