Skip to content

Commit

Permalink
Fix test on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
thegridman committed Oct 24, 2022
1 parent ec5da92 commit fa50fc0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public List<Object> 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();
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit fa50fc0

Please sign in to comment.