Skip to content
This repository was archived by the owner on Mar 24, 2025. It is now read-only.

Commit 2754da8

Browse files
committed
Fix line length
1 parent 1112822 commit 2754da8

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/test/scala/com/databricks/spark/xml/XmlSuite.scala

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1233,7 +1233,10 @@ final class XmlSuite extends AnyFunSuite with BeforeAndAfterAll {
12331233
test("rootTag with simple attributes") {
12341234
val xmlPath = getEmptyTempDir().resolve("simple_attributes")
12351235
val df = spark.createDataFrame(Seq((42, "foo"))).toDF("number", "value").repartition(1)
1236-
df.write.option("rootTag", "root foo='bar' bing=\"baz\"").option("declaration", "").xml(xmlPath.toString)
1236+
df.write.
1237+
option("rootTag", "root foo='bar' bing=\"baz\"").
1238+
option("declaration", "").
1239+
xml(xmlPath.toString)
12371240

12381241
val xmlFile =
12391242
Files.list(xmlPath).iterator.asScala.filter(_.getFileName.toString.startsWith("part-")).next()

0 commit comments

Comments
 (0)