Skip to content

Commit

Permalink
Fixed case issue caused by Goland rename
Browse files Browse the repository at this point in the history
  • Loading branch information
CJ-Jackson committed Feb 3, 2019
1 parent 5afa68d commit 61a7471
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions soap_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ func TestClient_Call(t *testing.T) {
t.Errorf("error: %+v", rv)
}

soap, err = SoapClient("http://webservices.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?wsdl")
soap, err = SoapClient("http://webservices.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?WSDL")
if err != nil {
t.Errorf("error not expected: %s", err)
}
Expand All @@ -121,7 +121,7 @@ func TestClient_Call(t *testing.T) {
t.Errorf("error: %+v", rc)
}

soap, err = SoapClient("http://www.dataaccess.com/webservicesserver/numberconversion.wso?wsdl")
soap, err = SoapClient("http://www.dataaccess.com/webservicesserver/numberconversion.wso?WSDL")
if err != nil {
t.Errorf("error not expected: %s", err)
}
Expand All @@ -137,7 +137,7 @@ func TestClient_Call(t *testing.T) {
t.Errorf("error: %+v", rn)
}

soap, err = SoapClient("https://domains.livedns.co.il/API/DomainsAPI.asmx?wsdl")
soap, err = SoapClient("https://domains.livedns.co.il/API/DomainsAPI.asmx?WSDL")
if err != nil {
t.Errorf("error not expected: %s", err)
}
Expand All @@ -163,7 +163,7 @@ func TestClient_Call(t *testing.T) {

res, err = c.Call("checkVat", params)
if err == nil {
t.Errorf("invalid wsdl")
t.Errorf("invalid WSDL")
}
}

Expand Down Expand Up @@ -215,6 +215,6 @@ func TestProcess_doRequest(t *testing.T) {

_, err = c.doRequest("://teste.")
if err == nil {
t.Errorf("invalid wsdl")
t.Errorf("invalid WSDL")
}
}

0 comments on commit 61a7471

Please sign in to comment.