bito-code-review[bot] commented on PR #41968:
URL: https://github.com/apache/superset/pull/41968#issuecomment-4948260998
<!-- Bito Reply -->
The flagged issue is correct. The new test method
`test_rls_tables_related_api_returns_all_masked_matches` lacks a return type
annotation, which is required by the project's development standards. You can
resolve this by adding `-> None` to the method signature.
```python
@pytest.mark.usefixtures("load_birth_names_data")
def test_rls_tables_related_api_returns_all_masked_matches(self) -> None:
"""
Regression for #29707: the RLS dataset selector's async search must
```
I have checked the available PR comments, and there are no other comments to
address at this time. Would you like me to implement this change for you?
**tests/integration_tests/security/row_level_security_tests.py**
```
@pytest.mark.usefixtures("load_birth_names_data")
def test_rls_tables_related_api_returns_all_masked_matches(self) -> None:
"""
Regression for #29707: the RLS dataset selector's async search must
```
--
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]