uranusjr commented on code in PR #41316:
URL: https://github.com/apache/airflow/pull/41316#discussion_r1724281456
##########
tests/utils/test_operator_helpers.py:
##########
@@ -224,3 +224,8 @@ def func(ds_nodash):
kwargs_callable(*args, **kwargs)
assert "ds_nodash" in str(exc_info)
+
+
+def test_args_and_kwargs_conflicts():
+ kwargs_result = operator_helpers.determine_kwargs(callable10, args=[1, 2],
kwargs={"ds_nodash": 1})
Review Comment:
We should add a test for `**kwargs`. Maybe use `parametrize` to cover that?
--
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]