aboutsummaryrefslogtreecommitdiffstats
path: root/test/mitmproxy/coretypes/test_basethread.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/mitmproxy/coretypes/test_basethread.py')
-rw-r--r--test/mitmproxy/coretypes/test_basethread.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mitmproxy/coretypes/test_basethread.py b/test/mitmproxy/coretypes/test_basethread.py
index 4a383fea..6b0ae154 100644
--- a/test/mitmproxy/coretypes/test_basethread.py
+++ b/test/mitmproxy/coretypes/test_basethread.py
@@ -4,4 +4,4 @@ from mitmproxy.coretypes import basethread
def test_basethread():
t = basethread.BaseThread('foobar')
- assert re.match('foobar - age: \d+s', t._threadinfo())
+ assert re.match(r'foobar - age: \d+s', t._threadinfo())