refactor: replace decpinfo with colibre in test client identifiers

Update test fixtures and client references to use colibre branding
instead of the legacy decpinfo naming convention.

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
Colin Maudry
2026-07-01 11:17:18 +02:00
parent a1bf0b381b
commit 190b8154b4
4 changed files with 24 additions and 24 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ def test_bearer_without_value_returns_401(temp_db):
def test_invalid_token_returns_401(temp_db):
app = _make_app()
resp = app.test_client().get(
"/protected", headers={"Authorization": "Bearer decpinfo_unknown"}
"/protected", headers={"Authorization": "Bearer colibre_unknown"}
)
assert resp.status_code == 401
assert resp.get_json()["message"] == "invalid_token"