mirror of
https://github.com/corda/corda.git
synced 2024-12-21 05:53:23 +00:00
Fix test
This commit is contained in:
parent
d375875054
commit
8c1ea4a61d
@ -30,7 +30,7 @@ class SummingOperationThrowing(val a: Int, val b: Int) : FlowAsyncOperation<Int>
|
||||
class ExampleSummingFlow : FlowLogic<Int>() {
|
||||
@Suspendable
|
||||
override fun call(): Int {
|
||||
val answer = executeAsync(SummingOperationThrowing(1, 2))
|
||||
val answer = executeAsync(SummingOperation(1, 2))
|
||||
return answer // hopefully 3
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user