We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c36efab commit 7597fbcCopy full SHA for 7597fbc
src/test/scala/gopher/channels/FoldSelectSuite.scala
@@ -21,6 +21,7 @@ class FoldSelectSuite extends FunSuite
21
import scala.concurrent.ExecutionContext.Implicits.global
22
23
test("fold-over-selector with changed read") {
24
+ for(i <- 1 to 100) {
25
//pending // we debug next now
26
val in = makeChannel[Int]()
27
val out = makeChannel[Int]()
@@ -43,6 +44,7 @@ class FoldSelectSuite extends FunSuite
43
44
45
val r = Await.result(read,1 second)
46
assert(r.last === 29)
47
+ }
48
}
49
50
test("fold-over-selector with swap read") {
0 commit comments