Skip to content

Commit

Permalink
removes assert on thread pool utilization
Browse files Browse the repository at this point in the history
 * the check is flaky
 * this not something a unit test should assert
  • Loading branch information
alexaverbuch committed Aug 9, 2018
1 parent 8c564a8 commit 532d8cb
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,6 @@ abstract class SchedulerTest extends CypherFunSuite {
if (s.isMultiThreaded) {
val countsPerThread = map.toSeq.groupBy(kv => kv._2).mapValues(_.size)
countsPerThread.size() should equal(concurrency)
for ((threadId, count) <- countsPerThread) {
withClue(s"Counts:\n${countsPerThread.mkString("\n")}\n") {
count should be > 1
}
}
}
}

Expand Down

0 comments on commit 532d8cb

Please sign in to comment.