summaryrefslogtreecommitdiff
path: root/integration/test/resources/ammonite/build.sc
diff options
context:
space:
mode:
Diffstat (limited to 'integration/test/resources/ammonite/build.sc')
-rw-r--r--integration/test/resources/ammonite/build.sc6
1 files changed, 3 insertions, 3 deletions
diff --git a/integration/test/resources/ammonite/build.sc b/integration/test/resources/ammonite/build.sc
index 4594cd9f..39134e3d 100644
--- a/integration/test/resources/ammonite/build.sc
+++ b/integration/test/resources/ammonite/build.sc
@@ -5,13 +5,13 @@ val fullCrossScalaVersions = Seq(
"2.12.0", "2.12.1", "2.12.2", "2.12.3", "2.12.4"
)
trait AmmModule extends mill.scalalib.CrossSbtModule{
- def testFramework = "utest.runner.Framework"
+ def testFrameworks = Seq("utest.runner.Framework")
def scalacOptions = Seq("-P:acyclic:force", "-target:jvm-1.7")
def compileIvyDeps = Agg(ivy"com.lihaoyi::acyclic:0.1.7")
def scalacPluginIvyDeps = Agg(ivy"com.lihaoyi::acyclic:0.1.7")
trait Tests extends super.Tests{
def ivyDeps = Agg(ivy"com.lihaoyi::utest:0.6.0")
- def testFramework = "utest.runner.Framework"
+ def testFrameworks = Seq("utest.runner.Framework")
}
def allIvyDeps = T{transitiveIvyDeps() ++ scalaLibraryIvyDeps()}
def externalSources = T{
@@ -181,4 +181,4 @@ class SshdModule(val crossScalaVersion: String) extends AmmModule{
ivy"org.scalacheck::scalacheck:1.12.6"
)
}
-} \ No newline at end of file
+}