From 7752fc8c9d9f90ff5d5ee820e4ba46afe5c83887 Mon Sep 17 00:00:00 2001 From: Adel El-Beik <48713346+adelel1@users.noreply.github.com> Date: Thu, 27 Jan 2022 13:49:08 +0000 Subject: [PATCH] CORDA-4189: Removed existing vendor test (#7048) --- node/src/integration-test/kotlin/net/corda/node/NodeRPCTests.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/node/src/integration-test/kotlin/net/corda/node/NodeRPCTests.kt b/node/src/integration-test/kotlin/net/corda/node/NodeRPCTests.kt index 64c275193e..646772745f 100644 --- a/node/src/integration-test/kotlin/net/corda/node/NodeRPCTests.kt +++ b/node/src/integration-test/kotlin/net/corda/node/NodeRPCTests.kt @@ -30,7 +30,6 @@ class NodeRPCTests { val nodeDiagnosticInfo = startNode().get().rpc.nodeDiagnosticInfo() assertTrue(nodeDiagnosticInfo.version.matches(CORDA_VERSION_REGEX)) assertEquals(PLATFORM_VERSION, nodeDiagnosticInfo.platformVersion) - assertEquals(CORDA_VENDOR, nodeDiagnosticInfo.vendor) assertTrue(nodeDiagnosticInfo.vendor == CORDA_VENDOR || nodeDiagnosticInfo.vendor == CORDA_VENDOR_CE) nodeDiagnosticInfo.cordapps.forEach { println("${it.shortName} ${it.type}") } assertEquals(CORDAPPS.size, nodeDiagnosticInfo.cordapps.size)