aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_pathoc.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_pathoc.py')
-rw-r--r--test/test_pathoc.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_pathoc.py b/test/test_pathoc.py
index cf12332c..6b037bcc 100644
--- a/test/test_pathoc.py
+++ b/test/test_pathoc.py
@@ -123,10 +123,12 @@ class TestDaemonSSL(_TestDaemon):
assert d["log"][0]["request"]["clientcert"]["keyinfo"]
def test_http2_without_ssl(self):
+ fp = cStringIO.StringIO()
c = pathoc.Pathoc(
("127.0.0.1", self.d.port),
use_http2=True,
ssl=False,
+ fp = fp
)
tutils.raises(NotImplementedError, c.connect)