From be441e786ead9cc251418856189751b3e51d325e Mon Sep 17 00:00:00 2001 From: Guillaume Martres Date: Sat, 15 Sep 2018 03:49:33 +0200 Subject: Remove useless type parameters for {Test,}Evaluator (#416) * Remove useless type parameters for {Test,}Evaluator * Update Evaluator.scala --- contrib/twirllib/test/src/mill/twirllib/HelloWorldTests.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'contrib/twirllib/test') diff --git a/contrib/twirllib/test/src/mill/twirllib/HelloWorldTests.scala b/contrib/twirllib/test/src/mill/twirllib/HelloWorldTests.scala index 01576975..8ef6ee3e 100644 --- a/contrib/twirllib/test/src/mill/twirllib/HelloWorldTests.scala +++ b/contrib/twirllib/test/src/mill/twirllib/HelloWorldTests.scala @@ -24,9 +24,9 @@ object HelloWorldTests extends TestSuite { val resourcePath: Path = pwd / 'contrib / 'twirllib / 'test / 'resources / "hello-world" - def workspaceTest[T, M <: TestUtil.BaseModule](m: M, resourcePath: Path = resourcePath) - (t: TestEvaluator[M] => T) - (implicit tp: TestPath): T = { + def workspaceTest[T](m: TestUtil.BaseModule, resourcePath: Path = resourcePath) + (t: TestEvaluator => T) + (implicit tp: TestPath): T = { val eval = new TestEvaluator(m) rm(m.millSourcePath) rm(eval.outPath) -- cgit v1.2.3