summaryrefslogtreecommitdiff
path: root/test/files/run/map_test.scala
diff options
context:
space:
mode:
authorstenman <stenman@epfl.ch>2003-12-09 14:25:53 +0000
committerstenman <stenman@epfl.ch>2003-12-09 14:25:53 +0000
commitfa15a3d86678031567fd8d1cce2e73628f4d24ac (patch)
tree37924f95a9c6f5068e342c8e6488a1b06555f748 /test/files/run/map_test.scala
parente6ed073577c6c03cb91eff97e684d9057bf5e169 (diff)
downloadscala-fa15a3d86678031567fd8d1cce2e73628f4d24ac.tar.gz
scala-fa15a3d86678031567fd8d1cce2e73628f4d24ac.tar.bz2
scala-fa15a3d86678031567fd8d1cce2e73628f4d24ac.zip
More comments and cleanups.
Diffstat (limited to 'test/files/run/map_test.scala')
-rw-r--r--test/files/run/map_test.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/map_test.scala b/test/files/run/map_test.scala
index 82a2c12e5a..709a7e0233 100644
--- a/test/files/run/map_test.scala
+++ b/test/files/run/map_test.scala
@@ -5,7 +5,7 @@ import scala.collection.immutable.Order;
object Test with Executable {
val intOrder =
- new Order((x:int,y:int) => x < y, (x:int,y:int) => x == y);
+ Order.make((x:int,y:int) => x < y);
test1();
test2();