1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 00:17:11 -07:00

Bubble up test result messages.

This commit is contained in:
Cedric Beust 2017-04-08 19:27:19 -07:00
parent f276eb3001
commit 6401a9d2af
16 changed files with 63 additions and 32 deletions

View file

@ -31,7 +31,7 @@ class DynamicGraphTest {
override fun call() : TaskResult2<T> {
kobaltLog(2, "Running node $n")
runNodes.add(n)
return TaskResult2(errorFunction(n), null, n)
return TaskResult2(errorFunction(n), value = n)
}
}