mirror of https://github.com/sbt/sbt.git
Remove unneeded map argument.
This commit is contained in:
parent
4e6cbd7304
commit
6f03b83446
|
|
@ -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)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue