Skip to content

Commit

Permalink
Fix missing space.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmyklebu committed Apr 21, 2014
1 parent 89ea0a8 commit 33bf4f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}
Expand Down

0 comments on commit 33bf4f2

Please sign in to comment.