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.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/scalacheck/parallel-collections/IntOperators.scala b/test/files/scalacheck/parallel-collections/IntOperators.scala
index bd937808db..2b7e0191a2 100644
--- a/test/files/scalacheck/parallel-collections/IntOperators.scala
+++ b/test/files/scalacheck/parallel-collections/IntOperators.scala
@@ -5,7 +5,7 @@ import scala.collection.parallel._
trait IntOperators extends Operators[Int] {
- def reduceOperators = List(_ + _, _ * _, Math.min(_, _), Math.max(_, _))
+ def reduceOperators = List(_ + _, _ * _, math.min(_, _), math.max(_, _))
def countPredicates = List(_ >= 0, _ < 0, _ < 50, _ < 500, _ < 5000, _ < 50000, _ % 2 == 0, _ == 99)
def forallPredicates = List(_ >= 0, _ < 0, _ % 2 == 0, _ != 55, _ != 505, _ != 5005)
def existsPredicates = List(_ >= 0, _ < 0, _ % 2 == 0, _ == 55, _ == 505, _ == 5005)
@@ -34,7 +34,7 @@ trait IntOperators extends Operators[Int] {
def foldArguments = List(
(0, _ + _),
(1, _ * _),
- (Int.MinValue, Math.max(_, _))
+ (Int.MinValue, math.max(_, _))
)
def addAllTraversables = List(
List[Int](),