From 7be7cc34d54fdcb3663529837075958ae4ca87de Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Thu, 13 May 2010 18:32:49 -0400 Subject: [PATCH] fix a compile test --- compile/src/test/scala/CompileTest.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile/src/test/scala/CompileTest.scala b/compile/src/test/scala/CompileTest.scala index cbaf1266d..fe17614fd 100644 --- a/compile/src/test/scala/CompileTest.scala +++ b/compile/src/test/scala/CompileTest.scala @@ -50,7 +50,7 @@ object CompileTest extends Specification private def testClasspath(scalaVersion: String) = WithCompiler.launcher { (launch, log) => def compiler(autoBoot: Boolean, compilerOnClasspath: Boolean): RawCompiler = - new RawCompiler(ScalaInstance(scalaVersion, launch), autoBoot, compilerOnClasspath, log) + new RawCompiler(ScalaInstance(scalaVersion, launch), new ClasspathOptions(autoBoot, compilerOnClasspath, true), log) val callback = new xsbti.TestCallback(Array(), Array())