Skip to content

Commit 0a20754

Browse files
committed
prepare for Dotty: move opening brace to end of line
1 parent 5c85ff1 commit 0a20754

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scalacheck/src/test/scala/ParallelIterableCheck.scala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,8 +275,7 @@ abstract class ParallelIterableCheck[T](collName: String) extends Properties(col
275275
("drop " + n + " elements") |: t.drop(n).iterator.sameElements(coll.drop(n))
276276
}
277277

278-
if (hasStrictOrder) property("slices must be equal") = forAllNoShrink(collectionPairsWith2Indices)
279-
{ case (t, coll, fr, slicelength) =>
278+
if (hasStrictOrder) property("slices must be equal") = forAllNoShrink(collectionPairsWith2Indices) { case (t, coll, fr, slicelength) =>
280279
val from = if (fr < 0) 0 else fr
281280
val until = if (from + slicelength > t.size) t.size else from + slicelength
282281
val tsl = t.slice(from, until)

0 commit comments

Comments
 (0)