summaryrefslogtreecommitdiff
path: root/test/files/scalacheck/parallel-collections/IntOperators.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/scalacheck/parallel-collections/IntOperators.scala')
-rw-r--r--test/files/scalacheck/parallel-collections/IntOperators.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/files/scalacheck/parallel-collections/IntOperators.scala b/test/files/scalacheck/parallel-collections/IntOperators.scala
index 690ee34cca..24330d7670 100644
--- a/test/files/scalacheck/parallel-collections/IntOperators.scala
+++ b/test/files/scalacheck/parallel-collections/IntOperators.scala
@@ -49,7 +49,8 @@ trait IntOperators extends Operators[Int] {
def foldArguments = List(
(0, _ + _),
(1, _ * _),
- (Int.MinValue, math.max(_, _))
+ (Int.MinValue, math.max(_, _)),
+ (Int.MaxValue, math.min(_, _))
)
def addAllTraversables = List(
List[Int](),