""" Settings API tests — Phase 3 D-12 retirement. The /api/settings endpoint was removed in Plan 03-04. This file now contains only the 404 assertion test (no longer marked xfail — it should pass green). """ from __future__ import annotations async def test_settings_endpoint_removed(async_client): """D-12: /api/settings endpoint is removed in Phase 3.""" resp = await async_client.get("/api/settings") assert resp.status_code == 404