Fix ScalaProviderTest to work with new CrossValue type

This commit is contained in:
Mark Harrah 2013-01-29 17:47:29 -05:00
parent 6c5cafb55b
commit 437c805f3d
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ object ScalaProviderTest extends Specification
object LaunchTest
{
def testApp(main: String): Application = testApp(main, Array[File]())
def testApp(main: String, extra: Array[File]): Application = Application("org.scala-sbt", "launch-test", new Explicit(AppVersion), main, Nil, false, extra)
def testApp(main: String, extra: Array[File]): Application = Application("org.scala-sbt", "launch-test", new Explicit(AppVersion), main, Nil, CrossValue.Disabled, extra)
import Predefined._
def testRepositories = List(Local, ScalaToolsReleases, ScalaToolsSnapshots).map(Repository.Predefined(_))
def withLauncher[T](f: xsbti.Launcher => T): T =