From 1ca9b998dea79c822b61c5ff2156de1147951c96 Mon Sep 17 00:00:00 2001 From: Ross Nicoll Date: Mon, 3 Aug 2020 22:11:26 +0100 Subject: [PATCH] NOTICK Replace example URL with an unresolvable version (#6555) Replace example URL with an unresolvable version to avoid issues with network failures causing the test to fail, i.e. https://ci02.dev.r3.com/job/Corda-Enterprise/job/Corda-ENT-Release-Branch-Tests/job/enterprise/job/release%252Fent%252F4.6/127/testReport/net.corda.node.services.config/NodeConfigurationImplTest/compatibilityZoneURL_populates_NetworkServices/ --- .../net/corda/node/services/config/NodeConfigurationImplTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/src/test/kotlin/net/corda/node/services/config/NodeConfigurationImplTest.kt b/node/src/test/kotlin/net/corda/node/services/config/NodeConfigurationImplTest.kt index 069901080f..5ce75cbe58 100644 --- a/node/src/test/kotlin/net/corda/node/services/config/NodeConfigurationImplTest.kt +++ b/node/src/test/kotlin/net/corda/node/services/config/NodeConfigurationImplTest.kt @@ -280,7 +280,7 @@ class NodeConfigurationImplTest { @Test(timeout=3_000) fun `compatibilityZoneURL populates NetworkServices`() { - val compatibilityZoneURL = URI.create("https://r3.com").toURL() + val compatibilityZoneURL = URI.create("https://r3.example.com").toURL() val configuration = testConfiguration.copy( devMode = false, compatibilityZoneURL = compatibilityZoneURL)