Skip to content

Commit

Permalink
fixed a scala style error.
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangjiajin committed Jul 31, 2015
1 parent 740c203 commit 60a0b76
Showing 1 changed file with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,17 +114,17 @@ class PrefixSpanSuite extends SparkFunSuite with MLlibTestSparkContext {
val result = prefixspan.run(rdd)
val expectedValue = Array(
(Array(1), 4L),
(Array(1,-1, 6), 2L),
(Array(1,-1, 1), 2L),
(Array(1,-1, 3), 4L),
(Array(1,-1, 3, -1, 1), 2L),
(Array(1,-1, 3, -1, 3), 3L),
(Array(1,-1, 3, -1, 2), 3L),
(Array(1,-1, 2), 4L),
(Array(1,-1, 2, -1, 1), 2L),
(Array(1,-1, 2, -1, 3), 2L),
(Array(1,-1, 2, 3), 2L),
(Array(1,-1, 2, 3, -1, 1), 2L),
(Array(1, -1, 6), 2L),
(Array(1, -1, 1), 2L),
(Array(1, -1, 3), 4L),
(Array(1, -1, 3, -1, 1), 2L),
(Array(1, -1, 3, -1, 3), 3L),
(Array(1, -1, 3, -1, 2), 3L),
(Array(1, -1, 2), 4L),
(Array(1, -1, 2, -1, 1), 2L),
(Array(1, -1, 2, -1, 3), 2L),
(Array(1, -1, 2, 3), 2L),
(Array(1, -1, 2, 3, -1, 1), 2L),
(Array(1, 2), 2L),
(Array(1, 2, -1, 6), 2L),
(Array(1, 2, -1, 3), 2L),
Expand Down

0 comments on commit 60a0b76

Please sign in to comment.