summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/files/run/impconvtimes.check2
-rw-r--r--test/files/run/impconvtimes.scala (renamed from test/pending/run/impconvtimes.scala)2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/impconvtimes.check b/test/files/run/impconvtimes.check
index bc51b7ffe2..f08574de3e 100644
--- a/test/files/run/impconvtimes.check
+++ b/test/files/run/impconvtimes.check
@@ -1 +1 @@
-3.0 * Hour = Measure(3.0, Test.Hour) \ No newline at end of file
+3.0 * Hour = Measure(3.0,Hour)
diff --git a/test/pending/run/impconvtimes.scala b/test/files/run/impconvtimes.scala
index a69610b94a..8c5ab61779 100644
--- a/test/pending/run/impconvtimes.scala
+++ b/test/files/run/impconvtimes.scala
@@ -1,7 +1,7 @@
object Test {
abstract class Unit
object NoUnit extends Unit
- object Hour extends Unit
+ object Hour extends Unit { override def toString = "Hour" }
case class Measure(scalar: Double, unit: Unit) {
def *(newUnit: Unit) = Measure(scalar, newUnit)