From d301f55bb7df5d4f8156153a36fd600c04b77115 Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Fri, 24 Jul 2015 17:58:35 +0200 Subject: [PATCH] supress output during tests --- test/test_pathoc.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/test_pathoc.py b/test/test_pathoc.py index 215f691be..566711090 100644 --- a/test/test_pathoc.py +++ b/test/test_pathoc.py @@ -264,8 +264,9 @@ class TestDaemonHTTP2(_TestDaemon): def test_http2(self): c = pathoc.Pathoc( ("127.0.0.1", self.d.port), - use_http2=True, + fp=None, ssl=True, + use_http2=True, ) assert isinstance(c.protocol, http2.HTTP2Protocol) @@ -277,6 +278,7 @@ class TestDaemonHTTP2(_TestDaemon): def test_http2_alpn(self): c = pathoc.Pathoc( ("127.0.0.1", self.d.port), + fp=None, ssl=True, use_http2=True, http2_skip_connection_preface=True, @@ -293,6 +295,7 @@ class TestDaemonHTTP2(_TestDaemon): def test_request(self): c = pathoc.Pathoc( ("127.0.0.1", self.d.port), + fp=None, ssl=True, use_http2=True, )