summaryrefslogtreecommitdiff
path: root/test/files/jvm/future-spec/main.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/jvm/future-spec/main.scala')
-rw-r--r--test/files/jvm/future-spec/main.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/jvm/future-spec/main.scala b/test/files/jvm/future-spec/main.scala
index 132263e2e8..697d0fe91f 100644
--- a/test/files/jvm/future-spec/main.scala
+++ b/test/files/jvm/future-spec/main.scala
@@ -10,9 +10,9 @@ import java.util.concurrent.{ TimeoutException, CountDownLatch, TimeUnit }
object Test {
def main(args: Array[String]) {
- FutureTests.check()
- PromiseTests.check()
- TryTests.check()
+ (new FutureTests).check()
+ (new PromiseTests).check()
+ (new TryTests).check()
}
}