Remove unneeded map argument.

This commit is contained in:
Eugene Vigdorchik 2012-05-11 09:48:18 +04:00 committed by Mark Harrah
parent 4e6cbd7304
commit 6f03b83446
1 changed files with 2 additions and 2 deletions

View File

@ -329,8 +329,8 @@ object Defaults extends BuildCommon
})
def testExecutionTask(task: Scoped): Initialize[Task[Tests.Execution]] =
(testOptions in task, parallelExecution in task, fork in task, tags in task) map {
(opts, par, fork, ts) =>
(testOptions in task, parallelExecution in task, tags in task) map {
(opts, par, ts) =>
new Tests.Execution(opts, par, ts)
}