Skip to content
This repository was archived by the owner on May 9, 2024. It is now read-only.

Commit 5fd9380

Browse files
committed
fixing style check error
1 parent 42341fb commit 5fd9380

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mllib/src/test/scala/org/apache/spark/mllib/linalg/VectorsSuite.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ class VectorsSuite extends FunSuite {
8989
val vec3 = Vectors.sparse(5, Array(2, 3, 4), Array(1.0, 0.0, -.7))
9090
assert(vec3.argmax === 2)
9191

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

0 commit comments

Comments
 (0)