summaryrefslogtreecommitdiffstats
path: root/test/modules/http2/test_712_buffering.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/modules/http2/test_712_buffering.py')
-rw-r--r--test/modules/http2/test_712_buffering.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/modules/http2/test_712_buffering.py b/test/modules/http2/test_712_buffering.py
index ebf43239b5..12a06c8bb8 100644
--- a/test/modules/http2/test_712_buffering.py
+++ b/test/modules/http2/test_712_buffering.py
@@ -2,8 +2,8 @@ from datetime import timedelta
import pytest
-from h2_conf import HttpdConf
-from h2_curl import CurlPiper
+from .env import H2Conf
+from pyhttpd.curl import CurlPiper
class TestBuffering:
@@ -11,12 +11,12 @@ class TestBuffering:
@pytest.fixture(autouse=True, scope='class')
def _class_scope(self, env):
env.setup_data_1k_1m()
- conf = HttpdConf(env)
+ conf = H2Conf(env)
conf.add_vhost_cgi(h2proxy_self=True).install()
assert env.apache_restart() == 0
@pytest.mark.skip(reason="this test shows unreliable jitter")
- def test_712_01(self, env):
+ def test_h2_712_01(self, env):
# test gRPC like requests that do not end, but give answers, see #207
#
# this test works like this:
@@ -38,7 +38,7 @@ class TestBuffering:
piper.stutter_check(chunks, stutter)
@pytest.mark.skipif(True, reason="new feature in upcoming http2")
- def test_712_02(self, env):
+ def test_h2_712_02(self, env):
# same as 712_01 but via mod_proxy_http2
#
url = env.mkurl("https", "cgi", "/h2proxy/h2test/echo")
@@ -49,7 +49,7 @@ class TestBuffering:
piper.stutter_check(chunks, stutter)
@pytest.mark.skipif(True, reason="new feature in upcoming http2")
- def test_712_03(self, env):
+ def test_h2_712_03(self, env):
# same as 712_02 but with smaller chunks
#
url = env.mkurl("https", "cgi", "/h2proxy/h2test/echo")