Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jul 27, 2023
1 parent 6da5903 commit 2d66915
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions tests/test_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 2d66915

Please sign in to comment.