Copilot commented on code in PR #63466:
URL: https://github.com/apache/airflow/pull/63466#discussion_r2926635867


##########
providers/common/ai/tests/unit/common/ai/operators/test_llm_schema_compare.py:
##########
@@ -99,6 +99,11 @@ class TestLLMSchemaCompareOperator:
                 "at-least two combinations",
                 id="one_datasource_only",
             ),
+            pytest.param(
+                {"db_conn_ids": ["conn"], "table_names": ["t"], 
"data_sources": []},
+                "at-least two combinations",
+                id="one_db_table_combination_only",
+            ),

Review Comment:
   The new `one_db_table_combination_only` parameterized case is functionally 
identical to the existing `one_db_conn_only` case because `data_sources` 
defaults to an empty list when omitted. Consider removing one of them to avoid 
redundant coverage and keep the parameter set minimal.
   ```suggestion
   
   ```



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