From 6dc304d73d313bde2b9a709dd4ecc5d4e9d53a96 Mon Sep 17 00:00:00 2001 From: Bruno Domingues Date: Fri, 30 May 2025 13:21:53 -0300 Subject: [PATCH] SIENTIAPDE-1083: fix app test 2. --- tests/unit/test_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_app.py b/tests/unit/test_app.py index 5705c67..c4af7bb 100644 --- a/tests/unit/test_app.py +++ b/tests/unit/test_app.py @@ -98,7 +98,7 @@ def test_main_successful_run_one_loop(mock_app_env, capsys): app.main() assert excinfo.value.code == 0 - mock_app_env["start_http_server"].assert_called_once_with(8000) + mock_app_env["start_http_server"].assert_called_once_with(4840) app.metrics.APP_UP.labels.assert_any_call(pod_id="test_pod") set_calls = mock_app_env["metrics_APP_UP_labels_set"].call_args_list assert call(1) in set_calls