mandeepzemo commented on PR #53815: URL: https://github.com/apache/airflow/pull/53815#issuecomment-3166616485
@pierrejeambrun The pool list ordering test was passing locally but failing in CI/CD due to locale-dependent sorting of POOL3_NAME = "pool/3". To make the result consistent across environments, I updated the assertion to compare sorted lists in Python: `assert sorted([pool["name"] for pool in body["pools"]]) == sorted(expected_ids)` This avoids collation issues while still verifying the correct pool names are returned. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
