From 156ddff8b0b5c7e96bae33541dac459f031dd4d5 Mon Sep 17 00:00:00 2001 From: Martin Date: Mon, 17 May 2021 13:12:16 +0200 Subject: [PATCH] Rename testFrameworks -> testFramework --- build.sc | 2 +- example/compress/build.sc | 2 +- example/compress2/build.sc | 2 +- example/compress3/build.sc | 2 +- example/cookies/build.sc | 2 +- example/decorated/build.sc | 2 +- example/decorated2/build.sc | 2 +- example/endpoints/build.sc | 2 +- example/formJsonPost/build.sc | 2 +- example/httpMethods/build.sc | 2 +- example/minimalApplication/build.sc | 2 +- example/minimalApplication2/build.sc | 2 +- example/redirectAbort/build.sc | 2 +- example/scalatags/build.sc | 2 +- example/staticFiles/build.sc | 2 +- example/staticFiles2/build.sc | 2 +- example/todo/build.sc | 2 +- example/todoApi/build.sc | 2 +- example/todoDb/build.sc | 2 +- example/twirl/build.sc | 2 +- example/variableRoutes/build.sc | 2 +- example/websockets/build.sc | 2 +- example/websockets2/build.sc | 2 +- example/websockets3/build.sc | 2 +- example/websockets4/build.sc | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/build.sc b/build.sc index e02af644a6..37efd9d82d 100644 --- a/build.sc +++ b/build.sc @@ -60,7 +60,7 @@ class CaskMainModule(val crossScalaVersion: String) extends CaskModule { def scalacPluginIvyDeps = T{ if (!isDotty) Agg(ivy"com.lihaoyi::acyclic:0.2.0") else Agg() } object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10", ivy"com.lihaoyi::requests::0.6.9" diff --git a/example/compress/build.sc b/example/compress/build.sc index 23660c667b..0d6016b1d1 100644 --- a/example/compress/build.sc +++ b/example/compress/build.sc @@ -7,7 +7,7 @@ trait AppModule extends CrossScalaModule{ def ivyDeps = Agg[Dep]( ) object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10", diff --git a/example/compress2/build.sc b/example/compress2/build.sc index 46a9034788..f19e434305 100644 --- a/example/compress2/build.sc +++ b/example/compress2/build.sc @@ -6,7 +6,7 @@ trait AppModule extends CrossScalaModule{ def ivyDeps = Agg[Dep]( ) object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10", diff --git a/example/compress3/build.sc b/example/compress3/build.sc index 46a9034788..f19e434305 100644 --- a/example/compress3/build.sc +++ b/example/compress3/build.sc @@ -6,7 +6,7 @@ trait AppModule extends CrossScalaModule{ def ivyDeps = Agg[Dep]( ) object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10", diff --git a/example/cookies/build.sc b/example/cookies/build.sc index 46a9034788..f19e434305 100644 --- a/example/cookies/build.sc +++ b/example/cookies/build.sc @@ -6,7 +6,7 @@ trait AppModule extends CrossScalaModule{ def ivyDeps = Agg[Dep]( ) object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10", diff --git a/example/decorated/build.sc b/example/decorated/build.sc index 46a9034788..f19e434305 100644 --- a/example/decorated/build.sc +++ b/example/decorated/build.sc @@ -6,7 +6,7 @@ trait AppModule extends CrossScalaModule{ def ivyDeps = Agg[Dep]( ) object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10", diff --git a/example/decorated2/build.sc b/example/decorated2/build.sc index 46a9034788..f19e434305 100644 --- a/example/decorated2/build.sc +++ b/example/decorated2/build.sc @@ -6,7 +6,7 @@ trait AppModule extends CrossScalaModule{ def ivyDeps = Agg[Dep]( ) object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10", diff --git a/example/endpoints/build.sc b/example/endpoints/build.sc index 46a9034788..f19e434305 100644 --- a/example/endpoints/build.sc +++ b/example/endpoints/build.sc @@ -6,7 +6,7 @@ trait AppModule extends CrossScalaModule{ def ivyDeps = Agg[Dep]( ) object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10", diff --git a/example/formJsonPost/build.sc b/example/formJsonPost/build.sc index 78b60c17a4..a7264cea6f 100644 --- a/example/formJsonPost/build.sc +++ b/example/formJsonPost/build.sc @@ -6,7 +6,7 @@ trait AppModule extends CrossScalaModule{ def ivyDeps = Agg[Dep]( ) object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10", diff --git a/example/httpMethods/build.sc b/example/httpMethods/build.sc index 46a9034788..f19e434305 100644 --- a/example/httpMethods/build.sc +++ b/example/httpMethods/build.sc @@ -6,7 +6,7 @@ trait AppModule extends CrossScalaModule{ def ivyDeps = Agg[Dep]( ) object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10", diff --git a/example/minimalApplication/build.sc b/example/minimalApplication/build.sc index 46a9034788..f19e434305 100644 --- a/example/minimalApplication/build.sc +++ b/example/minimalApplication/build.sc @@ -6,7 +6,7 @@ trait AppModule extends CrossScalaModule{ def ivyDeps = Agg[Dep]( ) object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10", diff --git a/example/minimalApplication2/build.sc b/example/minimalApplication2/build.sc index 46a9034788..f19e434305 100644 --- a/example/minimalApplication2/build.sc +++ b/example/minimalApplication2/build.sc @@ -6,7 +6,7 @@ trait AppModule extends CrossScalaModule{ def ivyDeps = Agg[Dep]( ) object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10", diff --git a/example/redirectAbort/build.sc b/example/redirectAbort/build.sc index 46a9034788..f19e434305 100644 --- a/example/redirectAbort/build.sc +++ b/example/redirectAbort/build.sc @@ -6,7 +6,7 @@ trait AppModule extends CrossScalaModule{ def ivyDeps = Agg[Dep]( ) object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10", diff --git a/example/scalatags/build.sc b/example/scalatags/build.sc index 5f6953cd7d..62d5b7f7bc 100644 --- a/example/scalatags/build.sc +++ b/example/scalatags/build.sc @@ -8,7 +8,7 @@ trait AppModule extends CrossScalaModule{ ) object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10", diff --git a/example/staticFiles/build.sc b/example/staticFiles/build.sc index 2e99d1d4ab..e3a97174c3 100644 --- a/example/staticFiles/build.sc +++ b/example/staticFiles/build.sc @@ -8,7 +8,7 @@ trait AppModule extends CrossScalaModule{ def ivyDeps = Agg[Dep]( ) object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10", diff --git a/example/staticFiles2/build.sc b/example/staticFiles2/build.sc index 2e99d1d4ab..e3a97174c3 100644 --- a/example/staticFiles2/build.sc +++ b/example/staticFiles2/build.sc @@ -8,7 +8,7 @@ trait AppModule extends CrossScalaModule{ def ivyDeps = Agg[Dep]( ) object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10", diff --git a/example/todo/build.sc b/example/todo/build.sc index 7da6daecb1..aa367b29ce 100644 --- a/example/todo/build.sc +++ b/example/todo/build.sc @@ -10,7 +10,7 @@ trait AppModule extends CrossScalaModule{ ) object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10", diff --git a/example/todoApi/build.sc b/example/todoApi/build.sc index 46a9034788..f19e434305 100644 --- a/example/todoApi/build.sc +++ b/example/todoApi/build.sc @@ -6,7 +6,7 @@ trait AppModule extends CrossScalaModule{ def ivyDeps = Agg[Dep]( ) object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10", diff --git a/example/todoDb/build.sc b/example/todoDb/build.sc index 13d1191ead..f5bf4c92dc 100644 --- a/example/todoDb/build.sc +++ b/example/todoDb/build.sc @@ -9,7 +9,7 @@ trait AppModule extends CrossScalaModule{ ) object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10", diff --git a/example/twirl/build.sc b/example/twirl/build.sc index b42194622a..d140d39832 100644 --- a/example/twirl/build.sc +++ b/example/twirl/build.sc @@ -12,7 +12,7 @@ trait AppModule extends CrossScalaModule with mill.twirllib.TwirlModule{ ) object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10", diff --git a/example/variableRoutes/build.sc b/example/variableRoutes/build.sc index 46a9034788..f19e434305 100644 --- a/example/variableRoutes/build.sc +++ b/example/variableRoutes/build.sc @@ -6,7 +6,7 @@ trait AppModule extends CrossScalaModule{ def ivyDeps = Agg[Dep]( ) object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10", diff --git a/example/websockets/build.sc b/example/websockets/build.sc index f2968378a4..8677052576 100644 --- a/example/websockets/build.sc +++ b/example/websockets/build.sc @@ -6,7 +6,7 @@ trait AppModule extends CrossScalaModule{ def ivyDeps = Agg[Dep]( ) object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10", diff --git a/example/websockets2/build.sc b/example/websockets2/build.sc index f2968378a4..8677052576 100644 --- a/example/websockets2/build.sc +++ b/example/websockets2/build.sc @@ -6,7 +6,7 @@ trait AppModule extends CrossScalaModule{ def ivyDeps = Agg[Dep]( ) object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10", diff --git a/example/websockets3/build.sc b/example/websockets3/build.sc index f2968378a4..8677052576 100644 --- a/example/websockets3/build.sc +++ b/example/websockets3/build.sc @@ -6,7 +6,7 @@ trait AppModule extends CrossScalaModule{ def ivyDeps = Agg[Dep]( ) object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10", diff --git a/example/websockets4/build.sc b/example/websockets4/build.sc index f2968378a4..8677052576 100644 --- a/example/websockets4/build.sc +++ b/example/websockets4/build.sc @@ -6,7 +6,7 @@ trait AppModule extends CrossScalaModule{ def ivyDeps = Agg[Dep]( ) object test extends Tests{ - def testFrameworks = Seq("utest.runner.Framework") + def testFramework = "utest.runner.Framework" def ivyDeps = Agg( ivy"com.lihaoyi::utest::0.7.10",