aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test_proxy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_proxy.py b/test/test_proxy.py
index dacdbcc3..ffd29a73 100644
--- a/test/test_proxy.py
+++ b/test/test_proxy.py
@@ -133,7 +133,7 @@ class uRequest(libpry.AutoTree):
r.path = "path/foo"
r.headers["Foo"] = ["fOo"]
r.content = "afoob"
- assert r.replace("foo", "boo", flags=re.I) == 4
+ assert r.replace("foo(?i)", "boo") == 4
assert r.path == "path/boo"
assert not "foo" in r.content
assert r.headers["boo"] == ["boo"]
@@ -199,7 +199,7 @@ class uResponse(libpry.AutoTree):
r = tutils.tresp()
r.headers["Foo"] = ["fOo"]
r.content = "afoob"
- assert r.replace("foo", "boo", flags=re.I) == 3
+ assert r.replace("foo(?i)", "boo") == 3
assert not "foo" in r.content
assert r.headers["boo"] == ["boo"]