ashb commented on a change in pull request #16674:
URL: https://github.com/apache/airflow/pull/16674#discussion_r659729725



##########
File path: tests/jobs/test_scheduler_job.py
##########
@@ -3660,7 +3660,7 @@ def test_task_with_upstream_skip_process_task_instances():
     # dag_file_processor._process_task_instances(dag, dag_runs=dag_runs)
 
     with create_session() as session:
-        tis = {ti.task_id: ti for ti in dr.get_task_instances(session=session)}
+        tis = {ti.task_id: ti for ti in 
dr.get_task_instances(session=session)}  # pylint: disable=no-member

Review comment:
       ```suggestion
           tis = {ti.task_id: ti for ti in 
dr.get_task_instances(session=session)}
   ```




-- 
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]


Reply via email to