test_health_and_chat_completion

This commit is contained in:
Ishaan Jaffer
2025-10-31 19:28:59 -07:00
parent cd9cf2e6bd
commit 27a98de600
@@ -25,9 +25,6 @@ async def test_health_and_chat_completion():
readiness_response = await response.json()
assert readiness_response["status"] == "connected"
# New assertion: license metadata is present
assert "license" in readiness_response
assert "has_license" in readiness_response["license"]
# Test liveness endpoint
async with session.get("http://0.0.0.0:4000/health/liveness") as response: