This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch v3-0-test in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-0-test by this push: new 9ff257f9ca6 [v3-0-test] Fix failing dashboard queing tests (#50046) (#50052) 9ff257f9ca6 is described below commit 9ff257f9ca603f46ca4dd090509f89974687c624 Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> AuthorDate: Wed Apr 30 21:56:50 2025 +0200 [v3-0-test] Fix failing dashboard queing tests (#50046) (#50052) Main started failing after #49961 (cherry picked from commit 5f4bcc1258f6351d67623ebfe191c5b5ad0e9794) Co-authored-by: Jarek Potiuk <ja...@potiuk.com> --- .../tests/unit/api_fastapi/core_api/routes/ui/test_dashboard.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airflow-core/tests/unit/api_fastapi/core_api/routes/ui/test_dashboard.py b/airflow-core/tests/unit/api_fastapi/core_api/routes/ui/test_dashboard.py index aab0dca59a7..357c9066ebc 100644 --- a/airflow-core/tests/unit/api_fastapi/core_api/routes/ui/test_dashboard.py +++ b/airflow-core/tests/unit/api_fastapi/core_api/routes/ui/test_dashboard.py @@ -311,8 +311,8 @@ class TestDagStatsEndpoint: assert response.json() == { "active_dag_count": 1, "failed_dag_count": 0, - "running_dag_count": 1, - "queued_dag_count": 0, + "running_dag_count": 0, + "queued_dag_count": 1, } @pytest.mark.usefixtures("freeze_time_for_dagruns", "make_failed_dag_runs")