We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd8509b commit b5e89c0Copy full SHA for b5e89c0
junit/src/test/scala/scala/collection/parallel/mutable/ParArrayTest.scala
@@ -143,4 +143,9 @@ class ParArrayTest extends scala.collection.concurrent.ctries_old.Spec {
143
evaluating { ParArray.empty[Int].max }.shouldProduce[UnsupportedOperationException]()
144
}
145
146
+ @Test
147
+ def `empty minBy`: Unit = {
148
+ evaluating { ParArray.empty[String].minBy(_.length) }.shouldProduce[UnsupportedOperationException]()
149
+ }
150
+
151
0 commit comments