summaryrefslogtreecommitdiff
path: root/scalalib/test
diff options
context:
space:
mode:
Diffstat (limited to 'scalalib/test')
-rw-r--r--scalalib/test/src/mill/scalalib/GenIdeaTests.scala3
-rw-r--r--scalalib/test/src/mill/scalalib/HelloWorldTests.scala18
2 files changed, 7 insertions, 14 deletions
diff --git a/scalalib/test/src/mill/scalalib/GenIdeaTests.scala b/scalalib/test/src/mill/scalalib/GenIdeaTests.scala
index 00d9f53e..ea8cfc82 100644
--- a/scalalib/test/src/mill/scalalib/GenIdeaTests.scala
+++ b/scalalib/test/src/mill/scalalib/GenIdeaTests.scala
@@ -21,8 +21,7 @@ object GenIdeaTests extends TestSuite {
val helloWorldEvaluator = new TestEvaluator(
HelloWorld,
- outPath,
- workingSrcPath
+ outPath
)
def tests: Tests = Tests {
diff --git a/scalalib/test/src/mill/scalalib/HelloWorldTests.scala b/scalalib/test/src/mill/scalalib/HelloWorldTests.scala
index cecc9349..14012809 100644
--- a/scalalib/test/src/mill/scalalib/HelloWorldTests.scala
+++ b/scalalib/test/src/mill/scalalib/HelloWorldTests.scala
@@ -84,33 +84,27 @@ object HelloWorldTests extends TestSuite {
val helloWorldEvaluator = new TestEvaluator(
HelloWorld,
- outPath,
- workingSrcPath
+ outPath
)
val helloWorldWithMainEvaluator = new TestEvaluator(
HelloWorldWithMain,
- outPath,
- workingSrcPath
+ outPath
)
val helloWorldWithMainAssemblyEvaluator = new TestEvaluator(
HelloWorldWithMainAssembly,
- outPath,
- workingSrcPath
+ outPath
)
val helloWorldFatalEvaluator = new TestEvaluator(
HelloWorldFatalWarnings,
- outPath,
- workingSrcPath
+ outPath
)
val helloWorldOverrideEvaluator = new TestEvaluator(
HelloWorldScalaOverride,
- outPath,
- workingSrcPath
+ outPath
)
val helloWorldCrossEvaluator = new TestEvaluator(
CrossHelloWorld,
- outPath,
- workingSrcPath
+ outPath
)