diff --git a/tests/test_routing.py b/tests/test_routing.py index 2a30c814..8c365bec 100644 --- a/tests/test_routing.py +++ b/tests/test_routing.py @@ -20,13 +20,11 @@ def staticfiles(scope): app = Router( [ - Path("/", app=homepage, methods=['GET']), + Path("/", app=homepage, methods=["GET"]), PathPrefix( "/users", app=Router([Path("", app=users), Path("/{username}", app=user)]) ), - PathPrefix( - "/static", app=staticfiles, methods=['GET'] - ), + PathPrefix("/static", app=staticfiles, methods=["GET"]), ] )