Skip to content

Commit 3da56e5

Browse files
SPARK-3278 fixed indentation error
1 parent 75eac55 commit 3da56e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mllib/src/test/scala/org/apache/spark/mllib/regression/LinearRegressionSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ class LinearRegressionClusterSuite extends FunSuite with LocalClusterSparkContex
137137
}.cache()
138138
// If we serialize data directly in the task closure, the size of the serialized task would be
139139
// greater than 1MB and hence Spark would throw an error.
140-
val model = LinearRegressionWithSGD.train(points, 2 )
140+
val model = LinearRegressionWithSGD.train(points, 2)
141141
val predictions = model.predict(points.map(_.features))
142142
}
143143
}

0 commit comments

Comments
 (0)