potiuk commented on code in PR #42985:
URL: https://github.com/apache/airflow/pull/42985#discussion_r1800021470


##########
providers/tests/system/airbyte/example_airbyte_trigger_job.py:
##########
@@ -61,7 +61,13 @@
     # Task dependency created via `XComArgs`:
     #   async_source_destination >> airbyte_sensor
 
-from dev.tests_common.test_utils.system_tests import get_test_run  # noqa: E402
+from tests_common.test_utils.system_tests import get_test_run  # noqa: E402
+
+# Needed to run the example DAG with pytest (see: 
tests/system/README.md#run_via_pytest)
+test_run = get_test_run(dag)
+
+
+from tests_common.test_utils.system_tests import get_test_run  # noqa: E402

Review Comment:
   VERY good find.
   
    I think it's result of pre-commit run before/after the change. Pre-commit 
added the lines thinking it's not there before import has been updated in code 
- but then search-replace replaced the old import with the new one - making it 
into a duplicate.
   
   I will fix it



-- 
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: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to