Skip to content

Commit

Permalink
[@neutronest] Fix: test & import
Browse files Browse the repository at this point in the history
  • Loading branch information
neutronest committed Feb 2, 2019
1 parent ae3a752 commit 5502bb8
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import org.scalatest.{FlatSpec, Matchers}

class TestEnd2EndBasicTopicModelPipeline extends FlatSpec with Matchers{

it should "Test End2End Pipeline" in {

it should "Test End2End Pipeline" in {
val W = DenseVector(
0,1,2,3,4
)
Expand Down Expand Up @@ -38,8 +38,9 @@ class TestEnd2EndBasicTopicModelPipeline extends FlatSpec with Matchers{
assert(topicResult(0) == topicResult(1))
assert(topicResult(1) == topicResult(2))
assert(topicResult(2) != topicResult(3))
assert(topicResult(3) != topicResult(4))
assert(topicResult(3) == topicResult(4))
assert(topicResult(4) == topicResult(5))

}

}

0 comments on commit 5502bb8

Please sign in to comment.