Skip to content

Commit d9a193d

Browse files
committed
scalafmtAll
Signed-off-by: Peng Huo <[email protected]>
1 parent 9270e60 commit d9a193d

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

flint-spark-integration/src/test/scala/org/apache/spark/sql/flint/datatype/FlintDataTypeSuite.scala

+9-6
Original file line numberDiff line numberDiff line change
@@ -297,12 +297,15 @@ class FlintDataTypeSuite extends FlintSuite with Matchers {
297297
| }
298298
|}""".stripMargin
299299

300-
val expectedStructType = StructType(Seq(
301-
StructField("distance", LongType, true),
302-
StructField("transit_mode", StringType, true),
303-
StructField("route_length_miles", LongType, true,
304-
new MetadataBuilder().putString("aliasPath", "distance").build())
305-
))
300+
val expectedStructType = StructType(
301+
Seq(
302+
StructField("distance", LongType, true),
303+
StructField("transit_mode", StringType, true),
304+
StructField(
305+
"route_length_miles",
306+
LongType,
307+
true,
308+
new MetadataBuilder().putString("aliasPath", "distance").build())))
306309

307310
val deserialized = FlintDataType.deserialize(flintDataType)
308311

0 commit comments

Comments
 (0)