Skip to content

Commit d8d1e5d

Browse files
committed
Disable FlatMapObservableTest that is intermittently failing
The failure will be investigated in JAVA-4413
1 parent 27889e7 commit d8d1e5d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

driver-scala/src/test/scala/org/mongodb/scala/internal/FlatMapObservableTest.scala

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
package org.mongodb.scala.internal
1818

1919
import org.mongodb.scala.{ BaseSpec, Observable, Observer }
20+
import org.scalatest.Assertions
2021
import org.scalatest.concurrent.{ Eventually, Futures }
2122

2223
import java.util.concurrent.atomic.AtomicInteger
@@ -25,6 +26,8 @@ import scala.concurrent.{ Future, Promise }
2526

2627
class FlatMapObservableTest extends BaseSpec with Futures with Eventually {
2728
"FlatMapObservable" should "only complete once" in {
29+
Assertions.cancel("Temporarily skipping this test")
30+
2831
val p = Promise[Unit]()
2932
val completedCounter = new AtomicInteger(0)
3033
Observable(1 to 100)

0 commit comments

Comments
 (0)