Removed redundant semicolon

This commit is contained in:
Luca Milanesio 2014-02-27 10:51:06 +00:00 committed by Luca Milanesio luca.milanesio@gmail.com
parent c9208a4719
commit 63583d2544
1 changed files with 1 additions and 1 deletions

View File

@ -204,7 +204,7 @@ available with :key:`testGrouping` key. For example:
def groupByFirst(tests: Seq[TestDefinition]) =
tests groupBy (_.name(0)) map {
case (letter, tests) => new Group(letter.toString, tests, SubProcess(Seq("-Dfirst.letter"+letter)))
} toSeq;
} toSeq
lazy val root = Project("root", file("."), settings = defaultSettings ++ Seq(
scalaVersion := "2.10.3",