zhengruifeng commented on a change in pull request #25908:
[SPARK-29143][PYTHON][ML] Pyspark feature models support column setters/getters
URL: https://github.com/apache/spark/pull/25908#discussion_r328979198
##########
File path: python/pyspark/ml/tests/test_param.py
##########
@@ -353,7 +353,7 @@ def test_java_params(self):
for name, cls in inspect.getmembers(module, inspect.isclass):
if not name.endswith('Model') and not name.endswith('Params') \
and issubclass(cls, JavaParams) and not
inspect.isabstract(cls) \
- and not name.startswith('Java'):
+ and not name.startswith('Java') and name != 'LSH':
Review comment:
Why need to filter out `LSH` 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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]