This is an automated email from the ASF dual-hosted git repository.

kaxilnaik 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 b4f120df9ca Make test_xcom_get_slice_accepts_include_prior_dates test 
resilient to ordering
b4f120df9ca is described below

commit b4f120df9ca7b7a94e5be944f50022cb9f53516f
Author: Kaxil Naik <kaxiln...@apache.org>
AuthorDate: Mon Aug 18 12:27:48 2025 +0100

    Make test_xcom_get_slice_accepts_include_prior_dates test resilient to 
ordering
---
 .../tests/unit/api_fastapi/execution_api/versions/head/test_xcoms.py    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/airflow-core/tests/unit/api_fastapi/execution_api/versions/head/test_xcoms.py 
b/airflow-core/tests/unit/api_fastapi/execution_api/versions/head/test_xcoms.py
index ea93c2f96e0..2403e649cbf 100644
--- 
a/airflow-core/tests/unit/api_fastapi/execution_api/versions/head/test_xcoms.py
+++ 
b/airflow-core/tests/unit/api_fastapi/execution_api/versions/head/test_xcoms.py
@@ -320,7 +320,7 @@ class TestXComsGetEndpoint:
         )
         assert response.status_code == 200
 
-        assert response.json() == expected_xcoms
+        assert set(response.json()) == set(expected_xcoms)
 
 
 class TestXComsSetEndpoint:

Reply via email to