From c6f0e1256b8670440dd1e69e364970c157b182da Mon Sep 17 00:00:00 2001 From: msramalho <19508417+msramalho@users.noreply.github.com> Date: Thu, 23 Oct 2025 10:51:26 +0100 Subject: [PATCH] prometheus test fix --- app/tests/web/routers/test_default.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/tests/web/routers/test_default.py b/app/tests/web/routers/test_default.py index 158863d..32e1221 100644 --- a/app/tests/web/routers/test_default.py +++ b/app/tests/web/routers/test_default.py @@ -76,7 +76,7 @@ async def test_prometheus_metrics(test_data, client_with_token, get_settings): r = client_with_token.get("/metrics") assert r.status_code == HTTPStatus.OK assert ( - r.headers["content-type"] == "text/plain; version=0.0.4; charset=utf-8" + r.headers["content-type"] == "text/plain; version=1.0.0; charset=utf-8" ) assert "disk_utilization" in r.text assert "database_metrics" in r.text