Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

Commit

Permalink
Removed warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
bpross-52n committed Aug 7, 2013
1 parent b7f4982 commit c7eef74
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void testDescribeProcessCompleteSingle() {

String response = "";
try {
response = PostClient.sendRequest(this.url, payload);
response = PostClient.sendRequest(DescribeProcessPostIT.url, payload);
// parseXML(response);
}
catch (Exception e) {
Expand All @@ -55,7 +55,7 @@ public void testDescribeProcessCompleteSingleWrongLanguage() {

String response = "";
try {
response = PostClient.sendRequest(this.url, payload);
response = PostClient.sendRequest(DescribeProcessPostIT.url, payload);
// parseXML(response);
}
catch (Exception e) {
Expand All @@ -78,7 +78,7 @@ public void testDescribeProcessCompleteMultiple() {

String response = "";
try {
response = PostClient.sendRequest(this.url, payload);
response = PostClient.sendRequest(DescribeProcessPostIT.url, payload);
// parseXML(response);
}
catch (Exception e) {
Expand All @@ -101,7 +101,7 @@ public void testDescribeProcessCompleteAll() {

String response = "";
try {
response = PostClient.sendRequest(this.url, payload);
response = PostClient.sendRequest(DescribeProcessPostIT.url, payload);
// parseXML(response);
}
catch (Exception e) {
Expand All @@ -125,7 +125,7 @@ public void testDescribeProcessMissingVersionParameter() {

String response = "";
try {
response = PostClient.sendRequest(this.url, payload);
response = PostClient.sendRequest(DescribeProcessPostIT.url, payload);
}
catch (IOException e) {
fail(e.getMessage());
Expand All @@ -145,7 +145,7 @@ public void testDescribeProcessMissingServiceParameter() {

String response = "";
try {
response = PostClient.sendRequest(this.url, payload);
response = PostClient.sendRequest(DescribeProcessPostIT.url, payload);
}
catch (IOException e) {
fail(e.getMessage());
Expand All @@ -164,7 +164,7 @@ public void testDescribeProcessMissingIdentifierParameter() {

String response = "";
try {
response = PostClient.sendRequest(this.url, payload);
response = PostClient.sendRequest(DescribeProcessPostIT.url, payload);
}
catch (IOException e) {
fail(e.getMessage());
Expand All @@ -183,7 +183,7 @@ public void testDescribeProcessWrongIdentifierParameter() {

String response = "";
try {
response = PostClient.sendRequest(this.url, payload);
response = PostClient.sendRequest(DescribeProcessPostIT.url, payload);
}
catch (IOException e) {
fail(e.getMessage());
Expand Down

0 comments on commit c7eef74

Please sign in to comment.