From 33bf4f20e28fdeaab2ed6ae36ef97115898c88dd Mon Sep 17 00:00:00 2001 From: Tor Myklebust Date: Wed, 16 Apr 2014 14:14:38 -0400 Subject: [PATCH] Fix missing space. --- .../scala/org/apache/spark/mllib/recommendation/ALSSuite.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mllib/src/test/scala/org/apache/spark/mllib/recommendation/ALSSuite.scala b/mllib/src/test/scala/org/apache/spark/mllib/recommendation/ALSSuite.scala index 9022e5db83b7f..4c5e43fbfb161 100644 --- a/mllib/src/test/scala/org/apache/spark/mllib/recommendation/ALSSuite.scala +++ b/mllib/src/test/scala/org/apache/spark/mllib/recommendation/ALSSuite.scala @@ -146,7 +146,7 @@ class ALSSuite extends FunSuite with LocalSparkContext { val u = r.user + 25 val p = r.product + 25 val v = r.rating - val error = v - correct.get(u,p) + val error = v - correct.get(u, p) assert(math.abs(error) < 0.4) } }