From 3da56e530276a2ff7104993da893fe04e124392d Mon Sep 17 00:00:00 2001 From: martinzapletal Date: Fri, 30 Jan 2015 20:03:52 +0100 Subject: [PATCH] SPARK-3278 fixed indentation error --- .../apache/spark/mllib/regression/LinearRegressionSuite.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mllib/src/test/scala/org/apache/spark/mllib/regression/LinearRegressionSuite.scala b/mllib/src/test/scala/org/apache/spark/mllib/regression/LinearRegressionSuite.scala index 3d5625ad41b6a..864622a9296a6 100644 --- a/mllib/src/test/scala/org/apache/spark/mllib/regression/LinearRegressionSuite.scala +++ b/mllib/src/test/scala/org/apache/spark/mllib/regression/LinearRegressionSuite.scala @@ -137,7 +137,7 @@ class LinearRegressionClusterSuite extends FunSuite with LocalClusterSparkContex }.cache() // If we serialize data directly in the task closure, the size of the serialized task would be // greater than 1MB and hence Spark would throw an error. - val model = LinearRegressionWithSGD.train(points, 2 ) + val model = LinearRegressionWithSGD.train(points, 2) val predictions = model.predict(points.map(_.features)) } }