From 763fbfb39fe562ea69db0494a01df4870d36a3da Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Sat, 4 Sep 2010 08:12:17 -0400 Subject: [PATCH] fix PMap test --- util/collection/src/test/scala/PMapTest.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/collection/src/test/scala/PMapTest.scala b/util/collection/src/test/scala/PMapTest.scala index 091012f6e..bac4b7364 100644 --- a/util/collection/src/test/scala/PMapTest.scala +++ b/util/collection/src/test/scala/PMapTest.scala @@ -12,7 +12,7 @@ object PMapTest mp(Some("asdf")) = "a" mp(Some(3)) = 9 val x = Some(3) :^: Some("asdf") :^: KNil - val y = x.map[Id](mp) + val y = x.transform[Id](mp) val z = y.down z match { case 9 :+: "a" :+: HNil => println("true") } } \ No newline at end of file