Fixed a compilation error.

This commit is contained in:
Michele Sollecito 2018-07-23 16:48:34 +01:00
parent a4d65dae22
commit 32299a0811

View File

@ -23,6 +23,7 @@ import net.corda.core.node.services.CordaService
import net.corda.core.serialization.SingletonSerializeAsToken
import net.corda.node.internal.StartedNode
import net.corda.testing.node.internal.InternalMockNetwork
import net.corda.testing.node.internal.cordappsForPackages
import net.corda.testing.node.internal.startFlow
import org.junit.After
import org.junit.Before
@ -37,7 +38,7 @@ class FlowAsyncOperationTests {
@Before
fun setup() {
mockNet = InternalMockNetwork(
cordappPackages = listOf("net.corda.testing.contracts", "net.corda.node.services.statemachine"),
cordappsForAllNodes = cordappsForPackages("net.corda.testing.contracts", "net.corda.node.services.statemachine"),
notarySpecs = emptyList()
)
aliceNode = mockNet.createNode()