test: remove dead _make_client helper from conftest (from PR #376 review).

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
BigBodyCobain
2026-06-06 20:40:29 -06:00
parent 49d90eaf69
commit 76f4deb3a7
-6
View File
@@ -30,12 +30,6 @@ def client(_suppress_background_services):
from main import app
import asyncio
transport = ASGITransport(app=app)
async def _make_client():
async with AsyncClient(transport=transport, base_url="http://test") as ac:
return ac
# Return a sync-usable wrapper
class SyncClient:
def __init__(self):