Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsil committed Jun 17, 2024
1 parent 3c6efa0 commit 04113c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/routing/test_routing_with_lt_gt_syntax.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ async def websocket_params(session: WebSocket):
routes=[
Path("/", handler=users),
Path("/me", handler=user_me),
Path("/{username>", handler=user),
Path("/{username>:disable", handler=disable_user, methods=["PUT"]),
Path("/<username>", handler=user),
Path("/<username>:disable", handler=disable_user, methods=["PUT"]),
Path("/nomatch", handler=user_no_match),
],
),
Expand Down

0 comments on commit 04113c6

Please sign in to comment.