HyukjinKwon commented on code in PR #39004: URL: https://github.com/apache/spark/pull/39004#discussion_r1044347210
########## scalastyle-config.xml: ########## @@ -135,9 +135,9 @@ This file is divided into 3 sections: <!-- ??? usually shouldn't be checked into the code base. --> <check level="error" class="org.scalastyle.scalariform.NotImplementedErrorUsage" enabled="true"></check> - <!-- As of SPARK-7558, all tests in Spark should extend o.a.s.SparkFunSuite instead of FunSuite directly --> + <!-- As of SPARK-7558, all tests in Spark should extend o.a.s.SparkFunSuite instead of AnyFunSuite directly --> <check customId="funsuite" level="error" class="org.scalastyle.scalariform.TokenChecker" enabled="true"> - <parameters><parameter name="regex">^FunSuite[A-Za-z]*$</parameter></parameters> + <parameters><parameter name="regex">^AnyFunSuite[A-Za-z]*$</parameter></parameters> Review Comment: `FunSuite` actually doesn't exist anymore: > For example, org.scalatest.FunSuite was renamed to org.scalatest.funsuite.AnyFunSuite in 3.1.0. https://www.scalatest.org/release_notes/3.2.0 -- 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]
