From 437c805f3d9eb215596e9a0f5a1a9bf84b2eba4a Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Tue, 29 Jan 2013 17:47:29 -0500 Subject: [PATCH] Fix ScalaProviderTest to work with new CrossValue type --- launch/src/test/scala/ScalaProviderTest.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launch/src/test/scala/ScalaProviderTest.scala b/launch/src/test/scala/ScalaProviderTest.scala index a99bf1e013..a53d6c32ac 100644 --- a/launch/src/test/scala/ScalaProviderTest.scala +++ b/launch/src/test/scala/ScalaProviderTest.scala @@ -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 =