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

potiuk 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 697ad4a3d40 Import empty operator from compat module for AF2/AF3 
support (#59222)
697ad4a3d40 is described below

commit 697ad4a3d4033046142f21280e61357ac0470802
Author: Niko Oliveira <[email protected]>
AuthorDate: Mon Dec 8 16:33:37 2025 -0800

    Import empty operator from compat module for AF2/AF3 support (#59222)
---
 .../tests/system/amazon/aws/example_bedrock_retrieve_and_generate.py    | 2 +-
 .../amazon/tests/unit/amazon/aws/log/test_cloudwatch_task_handler.py    | 2 +-
 providers/amazon/tests/unit/amazon/aws/log/test_s3_task_handler.py      | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/providers/amazon/tests/system/amazon/aws/example_bedrock_retrieve_and_generate.py
 
b/providers/amazon/tests/system/amazon/aws/example_bedrock_retrieve_and_generate.py
index dd5eac098fd..3e0d2a84868 100644
--- 
a/providers/amazon/tests/system/amazon/aws/example_bedrock_retrieve_and_generate.py
+++ 
b/providers/amazon/tests/system/amazon/aws/example_bedrock_retrieve_and_generate.py
@@ -55,8 +55,8 @@ from 
airflow.providers.amazon.aws.sensors.opensearch_serverless import (
     OpenSearchServerlessCollectionActiveSensor,
 )
 from airflow.providers.amazon.aws.utils import get_botocore_version
-from airflow.providers.standard.operators.empty import EmptyOperator
 
+from tests_common.test_utils.compat import EmptyOperator
 from tests_common.test_utils.version_compat import AIRFLOW_V_3_0_PLUS
 
 if AIRFLOW_V_3_0_PLUS:
diff --git 
a/providers/amazon/tests/unit/amazon/aws/log/test_cloudwatch_task_handler.py 
b/providers/amazon/tests/unit/amazon/aws/log/test_cloudwatch_task_handler.py
index e0f9e169c8a..5d430564105 100644
--- a/providers/amazon/tests/unit/amazon/aws/log/test_cloudwatch_task_handler.py
+++ b/providers/amazon/tests/unit/amazon/aws/log/test_cloudwatch_task_handler.py
@@ -39,10 +39,10 @@ from 
airflow.providers.amazon.aws.log.cloudwatch_task_handler import (
     CloudwatchTaskHandler,
 )
 from airflow.providers.amazon.aws.utils import datetime_to_epoch_utc_ms
-from airflow.providers.standard.operators.empty import EmptyOperator
 from airflow.utils.state import State
 from airflow.utils.timezone import datetime
 
+from tests_common.test_utils.compat import EmptyOperator
 from tests_common.test_utils.config import conf_vars
 from tests_common.test_utils.dag import sync_dag_to_db
 from tests_common.test_utils.db import clear_db_dag_bundles, clear_db_dags, 
clear_db_runs
diff --git a/providers/amazon/tests/unit/amazon/aws/log/test_s3_task_handler.py 
b/providers/amazon/tests/unit/amazon/aws/log/test_s3_task_handler.py
index 65f70ed1b75..fb1c5bbd516 100644
--- a/providers/amazon/tests/unit/amazon/aws/log/test_s3_task_handler.py
+++ b/providers/amazon/tests/unit/amazon/aws/log/test_s3_task_handler.py
@@ -31,9 +31,9 @@ from moto import mock_aws
 from airflow.models import DAG, DagRun, TaskInstance
 from airflow.providers.amazon.aws.hooks.s3 import S3Hook
 from airflow.providers.amazon.aws.log.s3_task_handler import S3TaskHandler
-from airflow.providers.standard.operators.empty import EmptyOperator
 from airflow.utils.state import State, TaskInstanceState
 
+from tests_common.test_utils.compat import EmptyOperator
 from tests_common.test_utils.config import conf_vars
 from tests_common.test_utils.dag import sync_dag_to_db
 from tests_common.test_utils.db import clear_db_dag_bundles, clear_db_dags, 
clear_db_runs

Reply via email to