summaryrefslogtreecommitdiff
path: root/build.sc
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-01-14 05:14:28 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2018-01-14 05:22:37 -0800
commit16d98bbbf1a29a00c06e694a4eeb088842380c2c (patch)
tree3962395b144bcbeb94462800a1c5fb8c38cc0fa8 /build.sc
parentde96a55c3267bb1508e77a6815007807e3fd73fb (diff)
downloadmill-16d98bbbf1a29a00c06e694a4eeb088842380c2c.tar.gz
mill-16d98bbbf1a29a00c06e694a4eeb088842380c2c.tar.bz2
mill-16d98bbbf1a29a00c06e694a4eeb088842380c2c.zip
more work to get tests passing...
Diffstat (limited to 'build.sc')
-rwxr-xr-xbuild.sc4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sc b/build.sc
index e780aad6..96f7d8c5 100755
--- a/build.sc
+++ b/build.sc
@@ -30,7 +30,7 @@ trait MillModule extends SbtModule{ outer =>
def testArgs = T{ Seq.empty[String] }
val test = new Tests(implicitly)
- class Tests(ctx0: mill.mill.define.Ctx) extends mill.Module()(ctx0) with super.Tests{
+ class Tests(ctx0: mill.define.Ctx) extends mill.Module()(ctx0) with super.Tests{
def defaultCommandName() = "forkTest"
def forkArgs = T{ testArgs() }
def projectDeps =
@@ -65,7 +65,7 @@ object core extends MillModule {
}
val test = new Tests(implicitly)
- class Tests(ctx0: mill.mill.define.Ctx) extends super.Tests(ctx0){
+ class Tests(ctx0: mill.define.Ctx) extends super.Tests(ctx0){
def generatedSources = T {
mkdir(T.ctx().dest)
shared.generateCoreTestSources(T.ctx().dest)