Fix broken integration test following rebase from OS master (mostly test utils identity constant redefinitions / renaming)

This commit is contained in:
josecoll
2017-12-13 12:34:06 +00:00
parent d1998b2c94
commit 4e42fff7d4
27 changed files with 114 additions and 95 deletions

View File

@ -1,5 +1,6 @@
package net.corda.docs
import net.corda.core.identity.CordaX500Name
import net.corda.core.internal.concurrent.transpose
import net.corda.core.messaging.CordaRPCOps
import net.corda.core.messaging.startFlow
@ -23,7 +24,7 @@ import kotlin.test.assertEquals
class IntegrationTestingTutorial : IntegrationTest() {
companion object {
@ClassRule @JvmField
val databaseSchemas = IntegrationTestSchemas(*listOf(ALICE, BOB, DUMMY_NOTARY).map { it.toDatabaseSchemaName() }.toTypedArray())
val databaseSchemas = IntegrationTestSchemas(*listOf(ALICE_NAME, BOB_NAME, DUMMY_NOTARY_NAME).map { it.toDatabaseSchemaName() }.toTypedArray())
}
@Test