uranusjr commented on code in PR #27060:
URL: https://github.com/apache/airflow/pull/27060#discussion_r1018141028
##########
tests/dag_processing/test_manager.py:
##########
@@ -300,9 +301,11 @@ def test_file_paths_in_queue_sorted_alphabetically(
)
manager.set_file_paths(dag_files)
- assert manager._file_path_queue == []
+ assert manager._file_path_queue == collections.deque([])
Review Comment:
Don’t need the `[]`, just `collections.deque()` would work.
--
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]