summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
Diffstat (limited to 'test/files')
-rw-r--r--test/files/lib/ScalaCheck.jar.desired.sha12
-rw-r--r--test/files/scalacheck/array.scala2
2 files changed, 3 insertions, 1 deletions
diff --git a/test/files/lib/ScalaCheck.jar.desired.sha1 b/test/files/lib/ScalaCheck.jar.desired.sha1
index eaf6a10124..65e545b6d5 100644
--- a/test/files/lib/ScalaCheck.jar.desired.sha1
+++ b/test/files/lib/ScalaCheck.jar.desired.sha1
@@ -1 +1 @@
-11d0f9f9235146558bbfe94f3270aa5be3930079 ?ScalaCheck.jar
+41a805f4ccfab57be082e73f9de416fe6028d694 ?ScalaCheck.jar
diff --git a/test/files/scalacheck/array.scala b/test/files/scalacheck/array.scala
index 0b7dee5716..2febca4447 100644
--- a/test/files/scalacheck/array.scala
+++ b/test/files/scalacheck/array.scala
@@ -15,6 +15,7 @@ object Test extends Properties("Array") {
arbArray[AnyVal](arbAnyVal)
) map (_.arbitrary)
+ // inspired by #1857 and #2352
property("eq/ne") =
forAll(oneOf(myGens: _*)) { c1 =>
forAll(oneOf(myGens: _*)) { c2 =>
@@ -23,6 +24,7 @@ object Test extends Properties("Array") {
}
def smallInt = choose(1, 10)
+ // inspired by #2299
property("ofDim") = forAll(smallInt) { i1 =>
forAll(smallInt) { i2 =>
forAll(smallInt) { i3 =>