Skip to content

Commit d677f7d

Browse files
committed
Fixes Scala style issue
1 parent 44b283f commit d677f7d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sql/hive/src/test/scala/org/apache/spark/sql/hive/MetastoreDataSourcesSuite.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -708,8 +708,8 @@ class MetastoreDataSourcesSuite extends QueryTest with BeforeAndAfterEach {
708708

709709
test("Saving partition columns information") {
710710
val df =
711-
sparkContext.parallelize((1 to 10), 4).map { i =>
712-
Tuple4(i, i + 1, s"str$i", s"str${i+1}")
711+
sparkContext.parallelize(1 to 10, 4).map { i =>
712+
Tuple4(i, i + 1, s"str$i", s"str${i + 1}")
713713
}.toDF("a", "b", "c", "d")
714714

715715
val tableName = s"partitionInfo_${System.currentTimeMillis()}"

0 commit comments

Comments
 (0)