aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_fuzzing.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_fuzzing.py')
-rw-r--r--test/test_fuzzing.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/test_fuzzing.py b/test/test_fuzzing.py
index 646ce5c1..3e5fc100 100644
--- a/test/test_fuzzing.py
+++ b/test/test_fuzzing.py
@@ -27,7 +27,7 @@ class TestFuzzy(tservers.HTTPProxTest):
assert p.request(req%self.server.port).status_code == 400
def test_invalid_upstream(self):
- req = r"get:'http://localhost:%s/p/200:i10,\'+\''"
+ req = r"get:'http://localhost:%s/p/200:i10,\x27+\x27'"
p = self.pathoc()
assert p.request(req%self.server.port).status_code == 502
@@ -35,5 +35,3 @@ class TestFuzzy(tservers.HTTPProxTest):
req = r'200:d0'
p = self.pathod(req)
assert p.status_code == 502
-
-