summaryrefslogtreecommitdiff
path: root/src/scalacheck
diff options
context:
space:
mode:
authorAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-10-05 08:06:12 +0000
committerAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-10-05 08:06:12 +0000
commitb090accba15e71ac0c4823d1aa604b6beaadb335 (patch)
treede80388f125300329aa6dfbffedcf3dbb0ff1ca0 /src/scalacheck
parentc1f8dbca52899f87128ece2f5d137fb91206ede7 (diff)
downloadscala-b090accba15e71ac0c4823d1aa604b6beaadb335.tar.gz
scala-b090accba15e71ac0c4823d1aa604b6beaadb335.tar.bz2
scala-b090accba15e71ac0c4823d1aa604b6beaadb335.zip
An issue with scalacheck and actors where an ex...
An issue with scalacheck and actors where an excess of thread pools gets created - tmp fix. No review.
Diffstat (limited to 'src/scalacheck')
-rw-r--r--src/scalacheck/org/scalacheck/Test.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/scalacheck/org/scalacheck/Test.scala b/src/scalacheck/org/scalacheck/Test.scala
index 82d9f679b6..98d4d37163 100644
--- a/src/scalacheck/org/scalacheck/Test.scala
+++ b/src/scalacheck/org/scalacheck/Test.scala
@@ -156,7 +156,8 @@ object Test {
* the test results. */
def check(prms: Params, p: Prop): Result = {
import prms._
- import actors.Futures.future
+ //import actors.Futures.future
+ import scala.concurrent.ops.future
assertParams(prms)
if(workers > 1)