diff --git a/modules/test/jenkins-results-parser/src/main/java/com/liferay/jenkins/results/parser/testray/TestrayProject.java b/modules/test/jenkins-results-parser/src/main/java/com/liferay/jenkins/results/parser/testray/TestrayProject.java index 5affa47e543dc6..463d4b611368fb 100644 --- a/modules/test/jenkins-results-parser/src/main/java/com/liferay/jenkins/results/parser/testray/TestrayProject.java +++ b/modules/test/jenkins-results-parser/src/main/java/com/liferay/jenkins/results/parser/testray/TestrayProject.java @@ -134,7 +134,8 @@ public List getTestrayComponents() { try { List entityJSONObjects = _testrayServer.requestGraphQL( - "components", TestrayComponent.FIELD_NAMES, filterString, -1, 25); + "components", TestrayComponent.FIELD_NAMES, filterString, -1, + 25); for (JSONObject entityJSONObject : entityJSONObjects) { _testrayComponents.add( @@ -158,8 +159,8 @@ public TestrayProductVersion getTestrayProductVersionByID( try { List entityJSONObjects = _testrayServer.requestGraphQL( - "productversions", TestrayProductVersion.FIELD_NAMES, filterString, 1, - 1); + "productversions", TestrayProductVersion.FIELD_NAMES, + filterString, 1, 1); if (entityJSONObjects.isEmpty()) { return null; @@ -183,8 +184,8 @@ public TestrayProductVersion getTestrayProductVersionByName( try { List entityJSONObjects = _testrayServer.requestGraphQL( - "productVersions", TestrayProductVersion.FIELD_NAMES, filterString, 1, - 1); + "productVersions", TestrayProductVersion.FIELD_NAMES, + filterString, 1, 1); if (entityJSONObjects.isEmpty()) { return null;