Skip to content

Commit 8048c3a

Browse files
committed
Fix #11885: disable flaky idempotency test on Windows
1 parent 5bb0e92 commit 8048c3a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tests/idempotency/IdempotencyCheck.scala

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ import java.util.stream.Stream as JStream
66
import scala.collection.JavaConverters.*
77

88
object IdempotencyCheck {
9-
val blacklisted = Set(
9+
val flakytests =
10+
if scala.util.Properties.isWin
11+
then Set(s"pos{JFile.separator}i6507b")
12+
else Set.empty
13+
14+
val blacklisted = flakytests ++ Set(
1015
// No fix needed. Bridges on collections in different order. Second one in scala2 order.
1116
s"pos{JFile.separator}Map{JFile.separator}scala{JFile.separator}collection{JFile.separator}immutable/Map",
1217
s"pos{JFile.separator}Map{JFile.separator}scala{JFile.separator}collection{JFile.separator}immutable{JFile.separator}AbstractMap",

0 commit comments

Comments
 (0)