Fix unused variable flagged by ruff

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01GrHZSypDfMnym1tM5XJAFZ
This commit is contained in:
Claude 2026-07-06 22:19:35 +00:00
commit f4dfd6e0f7
No known key found for this signature in database

View file

@ -422,7 +422,7 @@ async def test_bad_signature_token_returns_401(ds_error_shape):
response = await ds_error_shape.client.get(
"/-/actor.json", headers={"Authorization": "Bearer dstok_garbage"}
)
data = assert_canonical_error(response, 401)
assert_canonical_error(response, 401)
assert response.headers["www-authenticate"].startswith("Bearer")