Skip to content

Commit

Permalink
Remove debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Dec 19, 2024
1 parent eca502c commit a792792
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tests/api/routes/test_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ async def test_controller_endpoints_require_authentication(app: FastAPI, unautho
if isinstance(route, APIRoute):
for method in list(route.methods):
if (route.path, method) not in ALLOWED_CONTROLLER_ENDPOINTS:
print(f"Testing {route.path} {method}")
response = await getattr(unauthorized_client, method.lower())(route.path)
assert response.status_code == status.HTTP_401_UNAUTHORIZED
elif isinstance(route, APIWebSocketRoute):
Expand Down

0 comments on commit a792792

Please sign in to comment.