Use test-interface 0.2

This commit is contained in:
Mark Harrah 2009-11-27 10:42:16 -05:00
parent e6125354d6
commit 9e6c14f200
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ class SbtProject(info: ProjectInfo) extends DefaultProject(info) //with test.Sbt
val jsch = "com.jcraft" % "jsch" % "0.1.31" intransitive()
val jetty = "org.mortbay.jetty" % "jetty" % "6.1.14" % "optional"
val testInterface = "org.scala-tools.testing" % "test-interface" % "0.1"
val testInterface = "org.scala-tools.testing" % "test-interface" % "0.2"
// xsbt components
val xsbti = "org.scala-tools.sbt" % "launcher-interface" % projectVersion.value.toString % "provided"

View File

@ -173,7 +173,7 @@ abstract class BasicScalaProject extends ScalaProject with BasicDependencyProjec
def testFrameworks: Seq[TestFramework] =
{
import TestFrameworks.{ScalaCheck, ScalaTest, Specs}
ScalaCheckFramework :: /*SpecsFramework ::*/ ScalaTest :: Nil
ScalaCheck :: /*SpecsFramework ::*/ ScalaTest :: Nil
}
/** The list of listeners for testing. */
def testListeners: Seq[TestReportListener] = TestLogger(log) :: Nil