From: Eylon Malin Date: Tue, 21 Jan 2020 15:53:03 +0000 (+0200) Subject: e2e test - VidBaseTestCase api uri support https scheme X-Git-Tag: 6.0.2~11 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=e7a285a3c9cf5afd1731e4220bde5b301227f106;p=vid.git e2e test - VidBaseTestCase api uri support https scheme Issue-ID: VID-757 Signed-off-by: Eylon Malin Change-Id: I54e431c6faf6c14a1a7b521a9cb18f0477ecdadd --- diff --git a/vid-automation/src/main/java/vid/automation/test/test/VidBaseTestCase.java b/vid-automation/src/main/java/vid/automation/test/test/VidBaseTestCase.java index fd3dd47a6..842142751 100644 --- a/vid-automation/src/main/java/vid/automation/test/test/VidBaseTestCase.java +++ b/vid-automation/src/main/java/vid/automation/test/test/VidBaseTestCase.java @@ -113,7 +113,7 @@ public class VidBaseTestCase extends SetupCDTest{ } catch (URISyntaxException e) { throw new RuntimeException(e); } - this.uri = new JerseyUriBuilder().host(envUrI.getHost()).port(envUrI.getPort()).scheme("http").path("vid").build(); + this.uri = new JerseyUriBuilder().host(envUrI.getHost()).port(envUrI.getPort()).scheme(envUrI.getScheme()).path("vid").build(); } public void login() {