aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test_flow.py3
-rw-r--r--test/tutils.py4
2 files changed, 2 insertions, 5 deletions
diff --git a/test/test_flow.py b/test/test_flow.py
index d220381d..59d130f7 100644
--- a/test/test_flow.py
+++ b/test/test_flow.py
@@ -835,9 +835,6 @@ class TestResponse:
resp.content = None
assert resp._assemble()
- resp.request.client_conn.close = True
- assert "connection: close" in resp._assemble()
-
resp.content = flow.CONTENT_MISSING
assert not resp._assemble()
diff --git a/test/tutils.py b/test/tutils.py
index 2d6dad1d..74ce6ce6 100644
--- a/test/tutils.py
+++ b/test/tutils.py
@@ -121,7 +121,7 @@ class ProxTest:
r = hurl.get(
"http://127.0.0.1:%s"%self.proxy.port + "/p/" + spec,
validate_cert=False,
- debug=hurl.utils.stdout_debug
+ #debug=hurl.utils.stdout_debug
)
return r
else:
@@ -129,7 +129,7 @@ class ProxTest:
self.urlbase + "/p/" + spec,
proxy=self.proxies,
validate_cert=False,
- debug=hurl.utils.stdout_debug
+ #debug=hurl.utils.stdout_debug
)
@property