This is an automated email from the ASF dual-hosted git repository.

husseinawala pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 9201b36af3a Remove fixed comments (#47823)
9201b36af3a is described below

commit 9201b36af3afefce80a75c38d2e9c41de6f290c9
Author: Kaxil Naik <[email protected]>
AuthorDate: Sun Mar 16 20:51:39 2025 +0530

    Remove fixed comments (#47823)
    
    These comments have been resolved in the original PR #46584 .
---
 .../tests/unit/standard/operators/test_latest_only_operator.py        | 4 ----
 1 file changed, 4 deletions(-)

diff --git 
a/providers/standard/tests/unit/standard/operators/test_latest_only_operator.py 
b/providers/standard/tests/unit/standard/operators/test_latest_only_operator.py
index bcb1e152de1..e5f0e842fe4 100644
--- 
a/providers/standard/tests/unit/standard/operators/test_latest_only_operator.py
+++ 
b/providers/standard/tests/unit/standard/operators/test_latest_only_operator.py
@@ -84,7 +84,6 @@ class TestLatestOnlyOperator:
         dag_maker.create_dagrun()
         task.run(start_date=DEFAULT_DATE, end_date=DEFAULT_DATE)
 
-    # FIXME: See inlined comment in the test
     def test_skipping_non_latest(self, dag_maker):
         with dag_maker(
             default_args={"owner": "airflow", "start_date": DEFAULT_DATE}, 
schedule=INTERVAL, serialized=True
@@ -100,7 +99,6 @@ class TestLatestOnlyOperator:
 
         triggered_by_kwargs = {"triggered_by": DagRunTriggeredByType.TEST} if 
AIRFLOW_V_3_0_PLUS else {}
 
-        # dr0 =
         dr0 = dag_maker.create_dagrun(
             run_type=DagRunType.SCHEDULED,
             start_date=timezone.utcnow(),
@@ -110,7 +108,6 @@ class TestLatestOnlyOperator:
             **triggered_by_kwargs,
         )
 
-        # dr1 =
         dr1 = dag_maker.create_dagrun(
             run_type=DagRunType.SCHEDULED,
             start_date=timezone.utcnow(),
@@ -122,7 +119,6 @@ class TestLatestOnlyOperator:
             **triggered_by_kwargs,
         )
 
-        # dr2 =
         dr2 = dag_maker.create_dagrun(
             run_type=DagRunType.SCHEDULED,
             start_date=timezone.utcnow(),

Reply via email to