uranusjr commented on code in PR #56041:
URL: https://github.com/apache/airflow/pull/56041#discussion_r2468282159
##########
providers/common/sql/tests/unit/common/sql/operators/test_generic_transfer.py:
##########
@@ -273,7 +273,7 @@ def test_non_paginated_read(self):
task_id="transfer_table",
source_conn_id="my_source_conn_id",
destination_conn_id="my_destination_conn_id",
- sql="SELECT * FROM HR.EMPLOYEES",
+ sql=["SELECT * FROM HR.EMPLOYEES"],
Review Comment:
If we are to change this, I would want the test to cover both list[str] and
str. If it’s going to test only one of them, I would just keep it unmodified.
--
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]