mirror of
https://github.com/corda/corda.git
synced 2025-02-01 00:45:59 +00:00
Fixed smoke tests after config parsing changes [CORDA-926]
This commit is contained in:
parent
cd3beabcc0
commit
1caca44076
2
.idea/compiler.xml
generated
2
.idea/compiler.xml
generated
@ -17,6 +17,8 @@
|
||||
<module name="bootstrapper_test" target="1.8" />
|
||||
<module name="buildSrc_main" target="1.8" />
|
||||
<module name="buildSrc_test" target="1.8" />
|
||||
<module name="canonicalizer_main" target="1.8" />
|
||||
<module name="canonicalizer_test" target="1.8" />
|
||||
<module name="client_main" target="1.8" />
|
||||
<module name="client_test" target="1.8" />
|
||||
<module name="confidential-identities_main" target="1.8" />
|
||||
|
@ -47,7 +47,6 @@ public class StandaloneCordaRPCJavaClientTest {
|
||||
port.getAndIncrement(),
|
||||
port.getAndIncrement(),
|
||||
port.getAndIncrement(),
|
||||
port.getAndIncrement(),
|
||||
true,
|
||||
Collections.singletonList(rpcUser)
|
||||
);
|
||||
|
@ -61,7 +61,6 @@ class StandaloneCordaRPClientTest {
|
||||
p2pPort = port.andIncrement,
|
||||
rpcPort = port.andIncrement,
|
||||
rpcAdminPort = port.andIncrement,
|
||||
webPort = port.andIncrement,
|
||||
isNotary = true,
|
||||
users = listOf(user)
|
||||
)
|
||||
|
@ -38,7 +38,6 @@ class NodeVersioningTest {
|
||||
p2pPort = port.andIncrement,
|
||||
rpcPort = port.andIncrement,
|
||||
rpcAdminPort = port.andIncrement,
|
||||
webPort = port.andIncrement,
|
||||
isNotary = false,
|
||||
users = listOf(user)
|
||||
)
|
||||
|
@ -34,7 +34,6 @@ class CordappSmokeTest {
|
||||
p2pPort = port.andIncrement,
|
||||
rpcPort = port.andIncrement,
|
||||
rpcAdminPort = port.andIncrement,
|
||||
webPort = port.andIncrement,
|
||||
isNotary = false,
|
||||
users = listOf(user)
|
||||
)
|
||||
|
@ -13,7 +13,6 @@ class NodeConfig(
|
||||
val p2pPort: Int,
|
||||
val rpcPort: Int,
|
||||
val rpcAdminPort: Int,
|
||||
val webPort: Int,
|
||||
val isNotary: Boolean,
|
||||
val users: List<User>
|
||||
) {
|
||||
@ -32,7 +31,6 @@ class NodeConfig(
|
||||
val config = empty()
|
||||
.withValue("myLegalName", valueFor(legalName.toString()))
|
||||
.withValue("p2pAddress", addressValueFor(p2pPort))
|
||||
.withValue("webAddress", addressValueFor(webPort))
|
||||
.withValue("rpcSettings", empty()
|
||||
.withValue("address", addressValueFor(rpcPort))
|
||||
.withValue("adminAddress", addressValueFor(rpcAdminPort))
|
||||
|
Loading…
x
Reference in New Issue
Block a user