This is an automated email from the ASF dual-hosted git repository.
peter-toth pushed a commit to branch branch-3.5
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/branch-3.5 by this push:
new 236946ed2b67 [MINOR][BUILD][3.5] Fix linter issue in
`AmmoniteReplE2ESuite`
236946ed2b67 is described below
commit 236946ed2b67be7c820c4b3016a010f7bfa08c8b
Author: Peter Toth <[email protected]>
AuthorDate: Mon May 18 13:40:05 2026 +0200
[MINOR][BUILD][3.5] Fix linter issue in `AmmoniteReplE2ESuite`
### What changes were proposed in this pull request?
This PR reformats a `Seq(...)` argument list in `AmmoniteReplE2ESuite` so
that each element is on its own line.
### Why are the changes needed?
To fix a minor linter (scalastyle) issue.
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
Existing tests.
### Was this patch authored or co-authored using generative AI tooling?
Generated-by: Claude Opus 4.7
Closes #55951 from peter-toth/minor-fix-lint.
Lead-authored-by: Peter Toth <[email protected]>
Co-authored-by: Peter Toth <[email protected]>
Signed-off-by: Peter Toth <[email protected]>
---
.../scala/org/apache/spark/sql/application/AmmoniteReplE2ESuite.scala | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git
a/connector/connect/client/jvm/src/test/scala/org/apache/spark/sql/application/AmmoniteReplE2ESuite.scala
b/connector/connect/client/jvm/src/test/scala/org/apache/spark/sql/application/AmmoniteReplE2ESuite.scala
index b2847c16ec6f..053de80b54c9 100644
---
a/connector/connect/client/jvm/src/test/scala/org/apache/spark/sql/application/AmmoniteReplE2ESuite.scala
+++
b/connector/connect/client/jvm/src/test/scala/org/apache/spark/sql/application/AmmoniteReplE2ESuite.scala
@@ -29,7 +29,9 @@ class AmmoniteReplE2ESuite extends ConnectFunSuite with
RemoteSparkSession {
val sparkHome = sys.props.getOrElse(
"spark.test.home",
sys.env.getOrElse("SPARK_HOME", fail("spark.test.home or SPARK_HOME not
set")))
- val command =
Seq(s"$sparkHome/connector/connect/bin/spark-connect-scala-client", "--remote",
+ val command = Seq(
+ s"$sparkHome/connector/connect/bin/spark-connect-scala-client",
+ "--remote",
s"sc://localhost:$serverPort")
val process = new ProcessBuilder(command: _*).start()
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]