Skip to content

Commit c8f60cc

Browse files
committed
Make test_xcom_get_slice_accepts_include_prior_dates test resilient to ordering
1 parent c0dfa95 commit c8f60cc

File tree

1 file changed

+1
-1
lines changed
  • airflow-core/tests/unit/api_fastapi/execution_api/versions/head

1 file changed

+1
-1
lines changed

airflow-core/tests/unit/api_fastapi/execution_api/versions/head/test_xcoms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ def test_xcom_get_slice_accepts_include_prior_dates(
320320
)
321321
assert response.status_code == 200
322322

323-
assert response.json() == expected_xcoms
323+
assert set(response.json()) == set(expected_xcoms)
324324

325325

326326
class TestXComsSetEndpoint:

0 commit comments

Comments
 (0)