HyukjinKwon commented on a change in pull request #35092:
URL: https://github.com/apache/spark/pull/35092#discussion_r777870666



##########
File path: 
sql/core/src/test/scala/org/apache/spark/sql/streaming/StreamingQueryListenersConfSuite.scala
##########
@@ -31,7 +32,10 @@ class StreamingQueryListenersConfSuite extends StreamTest 
with BeforeAndAfter {
 
   override protected def sparkConf: SparkConf =
     super.sparkConf.set(STREAMING_QUERY_LISTENERS.key,
-      "org.apache.spark.sql.streaming.TestListener")
+      "org.apache.spark.sql.streaming.TestListener," +

Review comment:
       Let's fix this one together since we're here as 
`classOf[TestListener].getCanonicalName`.
   
   Maybe sth like:
   
   ```scala
   Seq(
     classOf[TestListener].getCanonicalName,
     classOf[TestSQLConfStreamingQueryListener].getCanonicalName).mkString(",")
   ```




-- 
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]

Reply via email to