diff --git a/tests/test_proxy_ccr.py b/tests/test_proxy_ccr.py index dc86fafa9..a553cec52 100644 --- a/tests/test_proxy_ccr.py +++ b/tests/test_proxy_ccr.py @@ -67,7 +67,7 @@ class TestCCRRetrieveEndpoint: response = client.post("/v1/retrieve", json={"hash": "nonexistent123"}) assert response.status_code == 404 assert "Entry not found" in response.json()["detail"] - assert "CCR TTL: 300 seconds" in response.json()["detail"] + assert "CCR TTL: 1800 seconds" in response.json()["detail"] def test_retrieve_expired_hash_reports_expiration_detail(self, client): """Expired entries report expiration separately from missing hashes.""" @@ -263,7 +263,7 @@ class TestCCRStatsEndpoint: data = response.json() assert "store" in data assert data["store"]["entry_count"] == 0 - assert data["store"]["default_ttl_seconds"] == 300 + assert data["store"]["default_ttl_seconds"] == 1800 assert "recent_retrievals" in data def test_stats_exposes_env_configured_ttl(self, client, monkeypatch):