summaryrefslogtreecommitdiff
path: root/test/files/run/t1505.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2009-05-12 12:28:55 +0000
committerPaul Phillips <paulp@improving.org>2009-05-12 12:28:55 +0000
commit99e44f21fef0b75791b7b08387bdcdfc8f6dfb65 (patch)
treeb4efc0ef096ad6f83d294a630d83bcb6a092a03d /test/files/run/t1505.scala
parent11f5744d1f3370d5519e80f4814e273c5d82b5c1 (diff)
downloadscala-99e44f21fef0b75791b7b08387bdcdfc8f6dfb65.tar.gz
scala-99e44f21fef0b75791b7b08387bdcdfc8f6dfb65.tar.bz2
scala-99e44f21fef0b75791b7b08387bdcdfc8f6dfb65.zip
Reverted probably unintentional change to Enume...
Reverted probably unintentional change to Enumeration (the method formerly called valueOf and now called withName needs to return Option[Value], not Value) and updated the failing tests to use the new Enumeration interface.
Diffstat (limited to 'test/files/run/t1505.scala')
-rw-r--r--test/files/run/t1505.scala18
1 files changed, 9 insertions, 9 deletions
diff --git a/test/files/run/t1505.scala b/test/files/run/t1505.scala
index 25c1a9117b..caadee8a0f 100644
--- a/test/files/run/t1505.scala
+++ b/test/files/run/t1505.scala
@@ -11,15 +11,15 @@ object R extends Enumeration {
}
object Test extends Application {
- assert(Some(P(0)) == P.valueOf("A"))
- assert(Some(P.C) == P.valueOf("C"))
- assert(None == P.valueOf("Q"))
+ assert(Some(P(0)) == P.withName("A"))
+ assert(Some(P.C) == P.withName("C"))
+ assert(None == P.withName("Q"))
- assert(Some(Q(0)) == Q.valueOf("A"))
- assert(Some(Q.C) == Q.valueOf("C"))
- assert(None == Q.valueOf("Q"))
+ assert(Some(Q(0)) == Q.withName("A"))
+ assert(Some(Q.C) == Q.withName("C"))
+ assert(None == Q.withName("Q"))
- assert(None == R.valueOf("A"))
- assert(None == R.valueOf("C"))
- assert(None == R.valueOf("Q"))
+ assert(None == R.withName("A"))
+ assert(None == R.withName("C"))
+ assert(None == R.withName("Q"))
}