Skip to content

Commit

Permalink
Fix: Useless comma could be removed
Browse files Browse the repository at this point in the history
  • Loading branch information
hoh committed Sep 4, 2024
1 parent 2874be9 commit 85d2541
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/supervisor/views/test_run_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async def test_run_code_from_invalid_path(aiohttp_client):

app = web.Application()

app.router.add_route("*", "/vm/{ref}{suffix:.*}", run_code_from_path),
app.router.add_route("*", "/vm/{ref}{suffix:.*}", run_code_from_path)
client = await aiohttp_client(app)

invalid_hash_request: web.Request = make_mocked_request(
Expand Down

0 comments on commit 85d2541

Please sign in to comment.