mirror of https://github.com/sbt/sbt.git
Fix task-standard tests
This commit is contained in:
parent
7a16185edc
commit
441f56bf6e
|
|
@ -28,9 +28,9 @@ object TaskGen extends std.TaskExtra {
|
|||
Execute.config(checkCycles),
|
||||
Execute.noTriggers,
|
||||
ExecuteProgress.empty[Task]
|
||||
)(std.Transform(dummies))
|
||||
)(using std.Transform(dummies))
|
||||
try {
|
||||
x.run(root)(service.asInstanceOf)
|
||||
x.run(root)(using service.asInstanceOf)
|
||||
} finally {
|
||||
shutdown()
|
||||
}
|
||||
|
|
|
|||
|
|
@ -88,9 +88,9 @@ object TaskTest {
|
|||
Execute.config(checkCycles),
|
||||
Execute.noTriggers,
|
||||
ExecuteProgress.empty[Task]
|
||||
)(taskToNode(idK[Task]))
|
||||
)(using taskToNode(idK[Task]))
|
||||
try {
|
||||
x.run(root)(service.asInstanceOf)
|
||||
x.run(root)(using service.asInstanceOf)
|
||||
} finally {
|
||||
shutdown()
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue