Skip to content

Commit

Permalink
fixing style check error
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeDittmar committed Jul 9, 2015
1 parent 42341fb commit 5fd9380
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ class VectorsSuite extends FunSuite {
val vec3 = Vectors.sparse(5, Array(2, 3, 4), Array(1.0, 0.0, -.7))
assert(vec3.argmax === 2)

// check for case that sparse vector is created with only negative values {0.0, 0.0,-1.0, -0.7, 0.0}
// check for case that sparse vector is created with
// only negative values {0.0, 0.0,-1.0, -0.7, 0.0}
val vec4 = Vectors.sparse(5, Array(2, 3), Array(-1.0, -.7))
assert(vec4.argmax === 0)

Expand Down

0 comments on commit 5fd9380

Please sign in to comment.