summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2009-09-17 01:28:54 +0000
committerPaul Phillips <paulp@improving.org>2009-09-17 01:28:54 +0000
commit63089db7fb68d070a2fdbcd3ca893a638eb5137e (patch)
treecad9952d0d387874b3621af80e94debf373bd8f0 /test/files
parentef05daf1001efb579ab04e43a0b6a7c4d8d9b92c (diff)
downloadscala-63089db7fb68d070a2fdbcd3ca893a638eb5137e.tar.gz
scala-63089db7fb68d070a2fdbcd3ca893a638eb5137e.tar.bz2
scala-63089db7fb68d070a2fdbcd3ca893a638eb5137e.zip
Not sure why my jars are being viewed somewhere...
Not sure why my jars are being viewed somewhere along the way as if textual data, and this is apparently causing breakage some places. One more try at uploading a jar.
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 =>