updating tests to use newer Scala versions

This commit is contained in:
Mark Harrah
2011-04-08 19:34:23 -04:00
parent 3e63a082bd
commit 14c6ee4b2a
9 changed files with 39 additions and 35 deletions
+4 -4
View File
@@ -120,10 +120,10 @@ object CompatibilityLevel extends Enumeration
def defaultVersions(level: Value) =
level match
{
case Full => "2.7.2 2.7.3 2.7.5 2.7.7 2.8.0.Beta1 2.8.0.RC1 2.8.0.RC2 2.8.0-SNAPSHOT"
case Basic => "2.7.7 2.7.2 2.8.0.RC2"
case Minimal => "2.7.7 2.8.0.RC2"
case Full => "2.7.4 2.7.7 2.8.0 2.8.1 2.9.0.RC1"
case Basic => "2.7.7 2.7.4 2.8.1"
case Minimal => "2.7.7 2.8.1"
case Minimal27 => "2.7.7"
case Minimal28 => "2.8.0.RC2"
case Minimal28 => "2.8.1"
}
}