pankajastro commented on code in PR #36445:
URL: https://github.com/apache/airflow/pull/36445#discussion_r1438547228
##########
tests/always/test_providers_manager.py:
##########
@@ -384,6 +384,11 @@ def test_notification(self):
notification_class_names = list(provider_manager.notification)
assert len(notification_class_names) > 5
+ def test_auth_managers(self):
+ provider_manager = ProvidersManager()
+ notification_class_names = list(provider_manager.auth_managers)
+ assert len(notification_class_names) > 0
Review Comment:
```suggestion
auth_manager_class_names = list(provider_manager.auth_managers)
assert len(auth_manager_class_names) > 0
```
nit: variable name is a bit misleading here
--
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]