uranusjr commented on code in PR #62501:
URL: https://github.com/apache/airflow/pull/62501#discussion_r3502006680


##########
airflow-core/tests/unit/jobs/test_scheduler_job.py:
##########
@@ -2789,15 +2789,17 @@ def 
test_find_executable_task_instances_not_enough_task_concurrency_per_dagrun_f
         self.job_runner = SchedulerJobRunner(job=scheduler_job)
         session = settings.Session()
 
-        dag_id = (
-            "SchedulerJobTest"
-            
".test_find_executable_task_instances_not_enough_task_concurrency_per_dagrun_for_first"
-        )
+        dag_id = 
"SchedulerJobTest.test_find_executable_task_instances_not_enough_task_concurrency_per_dagrun_for_first"
 
         with dag_maker(dag_id=dag_id):
             op1a = EmptyOperator.partial(
                 task_id="dummy1-a", priority_weight=2, 
max_active_tis_per_dagrun=1
-            ).expand_kwargs([{"inputs": 1}, {"inputs": 2}])
+            ).expand_kwargs(
+                [
+                    {"inputs": 1},
+                    {"inputs": 2},
+                ]
+            )

Review Comment:
   These changes are not needed. They should be reverted to avoid unrelated 
diff.



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