vicennial commented on code in PR #39361: URL: https://github.com/apache/spark/pull/39361#discussion_r1061524162
########## connector/connect/client/jvm/src/test/scala/org/apache/spark/sql/connect/client/SparkConnectClientSuite.scala: ########## @@ -16,17 +16,79 @@ */ package org.apache.spark.sql.connect.client +import java.util.concurrent.TimeUnit + +import io.grpc.Server +import io.grpc.netty.NettyServerBuilder +import io.grpc.stub.StreamObserver +import org.scalatest.BeforeAndAfterEach import org.scalatest.funsuite.AnyFunSuite // scalastyle:ignore funsuite Review Comment: Actually, maven complains that `object FunSuite is not a member of package org.scalatest` and I don't see any other place in spark where we use `FunSuite` over `AnyFunSuite`. Is there an alternative in this case? -- 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]
