summaryrefslogtreecommitdiff
path: root/src/partest
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-04-13 18:24:48 +0000
committerPaul Phillips <paulp@improving.org>2010-04-13 18:24:48 +0000
commit382dd00508882f15ffd086588903380d7980b35c (patch)
tree157c4c41e2ac7f2418c45fd5db91a06af761879f /src/partest
parent27288e3ffe2224bb206e79204542c26a2779223b (diff)
downloadscala-382dd00508882f15ffd086588903380d7980b35c.tar.gz
scala-382dd00508882f15ffd086588903380d7980b35c.tar.bz2
scala-382dd00508882f15ffd086588903380d7980b35c.zip
Some mopping up in equality.
way equals was being handled, and hammered it out. New ==/## tests which covers all types and values. Review by odersky.
Diffstat (limited to 'src/partest')
-rw-r--r--src/partest/scala/tools/partest/category/Runner.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/partest/scala/tools/partest/category/Runner.scala b/src/partest/scala/tools/partest/category/Runner.scala
index a7713d7dbe..10bf5794a9 100644
--- a/src/partest/scala/tools/partest/category/Runner.scala
+++ b/src/partest/scala/tools/partest/category/Runner.scala
@@ -75,7 +75,7 @@ trait Runner {
def allResults() =
for ((prop, res) <- result) yield {
- ScalacheckTest.this.trace("scalacheck result for %s: %s".format(prop, res))
+ ScalacheckTest.this.trace("%s: %s".format(prop, res))
res.asInstanceOf[ScalacheckResult].passed
}