HyukjinKwon commented on code in PR #46498: URL: https://github.com/apache/spark/pull/46498#discussion_r1595137600
########## python/pyspark/sql/tests/connect/test_parity_pandas_udf.py: ########## @@ -19,9 +19,11 @@ from pyspark.testing.connectutils import ReusedConnectTestCase -class PandasUDFParityTests(PandasUDFTestsMixin, ReusedConnectTestCase): - def test_udf_wrong_arg(self): - self.check_udf_wrong_arg() +class PandasUDFParityTests( + PandasUDFTestsMixin, + ReusedConnectTestCase, +): Review Comment: ```suggestion class PandasUDFParityTests(PandasUDFTestsMixin, ReusedConnectTestCase): ``` -- 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]
