Revert debug output

This commit is contained in:
René Pfeuffer
2018-10-16 17:01:48 +02:00
parent fff20b973f
commit a67d26575a

View File

@@ -77,15 +77,10 @@ public class ScmRequests {
* @return the response of the GET request using the given <code>url</code>
*/
private Response applyGETRequestWithQueryParams(String url, String params) {
try {
return RestAssured.given()
.auth().preemptive().basic(username, password)
.when()
.get(url + params);
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException(e);
}
return RestAssured.given()
.auth().preemptive().basic(username, password)
.when()
.get(url + params);
}
/**