diff --git a/bedrock-runtime-windows-tests/src/test/java/com/oracle/bedrock/runtime/remote/windows/winrm/SoapConnectionTest.java b/bedrock-runtime-windows-tests/src/test/java/com/oracle/bedrock/runtime/remote/windows/winrm/SoapConnectionTest.java index 9d3c8175..8eebf69e 100644 --- a/bedrock-runtime-windows-tests/src/test/java/com/oracle/bedrock/runtime/remote/windows/winrm/SoapConnectionTest.java +++ b/bedrock-runtime-windows-tests/src/test/java/com/oracle/bedrock/runtime/remote/windows/winrm/SoapConnectionTest.java @@ -182,7 +182,7 @@ public List send(Envelope envelope, @Test public void shouldUnmarshalSoapResponse() throws Exception { - SoapConnection connection = new SoapConnection("http://oracle.com", 80, "/foo", "dummy", null); + SoapConnection connection = new SoapConnection("oracle.com", 80, "/foo", "dummy", null); Marshaller marshaller = connection.createMarshaller(); Envelope envelope = ObjectFactories.SOAP.createEnvelope(); @@ -220,7 +220,7 @@ public void shouldUnmarshalSoapResponse() throws Exception @Test(expected = SoapFaultException.class) public void shouldUnmarshalSoapFault() throws Exception { - SoapConnection connection = new SoapConnection("http://oracle.com", 80, "/foo", "dummy", null); + SoapConnection connection = new SoapConnection("oracle.com", 80, "/foo", "dummy", null); Marshaller marshaller = connection.createMarshaller(); Envelope envelope = ObjectFactories.SOAP.createEnvelope();