bito-code-review[bot] commented on PR #43516: URL: https://github.com/apache/superset/pull/43516#issuecomment-5412103365
<!-- Bito Reply --> The flagged issue is correct. The test file `tests/unit_tests/security/test_realtime_notification_permissions.py` references `call` without importing it from `unittest.mock`, which causes a `NameError` during execution. To resolve this, you should update the import statement in that file to include `call`. Would you like me to fetch all other comments on this PR to validate them and implement fixes for the rest as well? **tests/unit_tests/security/test_realtime_notification_permissions.py** ``` from unittest.mock import MagicMock, call ``` -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
