Fix compilation error after OS -> ENT merge (#1120)

This commit is contained in:
szymonsztuka 2018-06-28 13:44:37 +01:00 committed by Michele Sollecito
parent b54292859a
commit 782d63ffe6

View File

@ -63,6 +63,10 @@ import kotlin.test.assertTrue
class CordaRPCClientTest : NodeBasedTest(listOf("net.corda.finance")) {
companion object {
val rpcUser = User("user1", "test", permissions = setOf(all()))
@ClassRule
@JvmField
val databaseSchemas = IntegrationTestSchemas(ALICE_NAME.toDatabaseSchemaName())
}
private lateinit var node: StartedNode<Node>
@ -73,11 +77,6 @@ class CordaRPCClientTest : NodeBasedTest(listOf("net.corda.finance")) {
private fun login(username: String, password: String, externalTrace: Trace? = null, impersonatedActor: Actor? = null) {
connection = client.start(username, password, externalTrace, impersonatedActor)
}
companion object {
@ClassRule
@JvmField
val databaseSchemas = IntegrationTestSchemas(ALICE_NAME.toDatabaseSchemaName())
}
@Before
override fun setUp() {