summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-02-27 20:38:53 -0800
committerGitHub <noreply@github.com>2018-02-27 20:38:53 -0800
commit457603c1c66d6e1b8cc769f1842ca951b3a7b7ce (patch)
treeb3708246b86af740cd2fc2d2053a511f14a49257
parent386cd7cd353379b2b3507c0aa3520faf7bee6f69 (diff)
downloadmill-457603c1c66d6e1b8cc769f1842ca951b3a7b7ce.tar.gz
mill-457603c1c66d6e1b8cc769f1842ca951b3a7b7ce.tar.bz2
mill-457603c1c66d6e1b8cc769f1842ca951b3a7b7ce.zip
Update 2 - Configuring Mill.md
-rw-r--r--docs/pages/2 - Configuring Mill.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/pages/2 - Configuring Mill.md b/docs/pages/2 - Configuring Mill.md
index cdeb2adb..81f26e34 100644
--- a/docs/pages/2 - Configuring Mill.md
+++ b/docs/pages/2 - Configuring Mill.md
@@ -81,7 +81,7 @@ object foo extends ScalaModule {
object test extends Tests{
def ivyDeps = Agg(ivy"com.lihaoyi::utest:0.6.0")
- def testFrameworks = Seq("mill.UTestFramework")
+ def testFrameworks = Seq("utest.runner.Framework")
}
}
```
@@ -143,11 +143,11 @@ object foo extends ScalaModule {
object test extends Tests{
def ivyDeps = Agg(ivy"com.lihaoyi::utest:0.6.0")
- def testFrameworks = Seq("mill.UTestFramework")
+ def testFrameworks = Seq("utest.runner.Framework")
}
object integration extends Tests{
def ivyDeps = Agg(ivy"com.lihaoyi::utest:0.6.0")
- def testFrameworks = Seq("mill.UTestFramework")
+ def testFrameworks = Seq("utest.runner.Framework")
}
}
```