From bc488cc254357ec9569482efaac5a9a5c737052a Mon Sep 17 00:00:00 2001 From: josecoll Date: Mon, 11 Dec 2017 13:27:38 +0000 Subject: [PATCH] Fix broken integration test in Samples. --- .../kotlin/net/corda/attachmentdemo/AttachmentDemoTest.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/attachment-demo/src/integration-test/kotlin/net/corda/attachmentdemo/AttachmentDemoTest.kt b/samples/attachment-demo/src/integration-test/kotlin/net/corda/attachmentdemo/AttachmentDemoTest.kt index 49ac9c993a..884fa333ea 100644 --- a/samples/attachment-demo/src/integration-test/kotlin/net/corda/attachmentdemo/AttachmentDemoTest.kt +++ b/samples/attachment-demo/src/integration-test/kotlin/net/corda/attachmentdemo/AttachmentDemoTest.kt @@ -36,8 +36,8 @@ class AttachmentDemoTest : IntegrationTest() { invokeRpc(CordaRPCOps::internalVerifiedTransactionsFeed) ))) val (nodeA, nodeB) = listOf( - startNode(providedName = DUMMY_BANK_A.name, rpcUsers = demoUser, maximumHeapSize = "1g", logLevel = "INFO"), - startNode(providedName = DUMMY_BANK_B.name, rpcUsers = demoUser, maximumHeapSize = "1g", logLevel = "INFO") + startNode(providedName = DUMMY_BANK_A.name, rpcUsers = demoUser, maximumHeapSize = "1g"), + startNode(providedName = DUMMY_BANK_B.name, rpcUsers = demoUser, maximumHeapSize = "1g") ).map { it.getOrThrow() } startWebserver(nodeB).getOrThrow()