From 2d6691550e0f467fb7c21b34d0ac4cbacdc4c67a Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 27 Jul 2023 10:40:52 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/test_app.py | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/tests/test_app.py b/tests/test_app.py index 343a1629..4b2e55a1 100644 --- a/tests/test_app.py +++ b/tests/test_app.py @@ -10,14 +10,17 @@ @pytest.mark.asyncio -@pytest.mark.parametrize("mount_path", (None, "/foo",)) +@pytest.mark.parametrize( + "mount_path", + ( + None, + "/foo", + ), +) async def test_mount_path(mount_path, unused_tcp_port): - components = configure( - {"app": {"type": "app"}}, - {"app": {"mount_path": mount_path}} - ) + components = configure({"app": {"type": "app"}}, {"app": {"mount_path": mount_path}}) - async with Context() as ctx, AsyncClient(follow_redirects=True)as http: + async with Context() as ctx, AsyncClient(follow_redirects=True) as http: await JupyverseComponent( components=components, port=unused_tcp_port,