kyungjunleeme commented on PR #52981:
URL: https://github.com/apache/airflow/pull/52981#issuecomment-3083889084
@kgw7401 I think that this is nice pr.
but if one morething to be added, it is nice pr more.
in test_dataproc.py
```python
@pytest.fixture
def async_get_operation():
def func(**kwargs):
m = mock.MagicMock()
m.configure_mock(**kwargs)
f = Future()
f.set_result(m)
return f
return func
```
it should be removed. because that fixture is not being used in that module.
could you check again?
--
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]