From 0aa61e886f8adf0a36dbc9a41ff7edc06df9c6d5 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 30 Sep 2021 17:02:01 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/test_proxy_functional.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/test_proxy_functional.py b/tests/test_proxy_functional.py index 4d2e358e761..0b23bbdf9b3 100644 --- a/tests/test_proxy_functional.py +++ b/tests/test_proxy_functional.py @@ -11,7 +11,6 @@ import aiohttp from aiohttp import web - # @pytest.fixture # def secure_proxy_url( # aiohttp_unused_port, tls_ca_certificate_pem_path, tls_ca_private_key_pem_path @@ -38,7 +37,8 @@ @pytest.fixture def secure_proxy_url( - aiohttp_unused_port, tls_certificate, + aiohttp_unused_port, + tls_certificate, ): """Return the an instance of a running secure proxy.""" unused_port = str(aiohttp_unused_port()) @@ -118,6 +118,7 @@ async def handler(*args, **kwargs): url = "https://httpbin.org/get" # secure_proxy_url = "https://127.0.0.1:8899" import logging + logging.getLogger().info(f"secure_proxy_url: {secure_proxy_url}") with tls_certificate_authority.cert_pem.tempfile() as tt: logging.getLogger().info(f"path to client CA file: {tt}")