Skip to content

Commit

Permalink
LRCI-4191 auto SF
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed May 28, 2024
1 parent bd999bf commit a575fb5
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ public List<TestrayComponent> getTestrayComponents() {

try {
List<JSONObject> entityJSONObjects = _testrayServer.requestGraphQL(
"components", TestrayComponent.FIELD_NAMES, filterString, -1, 25);
"components", TestrayComponent.FIELD_NAMES, filterString, -1,
25);

for (JSONObject entityJSONObject : entityJSONObjects) {
_testrayComponents.add(
Expand All @@ -158,8 +159,8 @@ public TestrayProductVersion getTestrayProductVersionByID(

try {
List<JSONObject> entityJSONObjects = _testrayServer.requestGraphQL(
"productversions", TestrayProductVersion.FIELD_NAMES, filterString, 1,
1);
"productversions", TestrayProductVersion.FIELD_NAMES,
filterString, 1, 1);

if (entityJSONObjects.isEmpty()) {
return null;
Expand All @@ -183,8 +184,8 @@ public TestrayProductVersion getTestrayProductVersionByName(

try {
List<JSONObject> entityJSONObjects = _testrayServer.requestGraphQL(
"productVersions", TestrayProductVersion.FIELD_NAMES, filterString, 1,
1);
"productVersions", TestrayProductVersion.FIELD_NAMES,
filterString, 1, 1);

if (entityJSONObjects.isEmpty()) {
return null;
Expand Down

0 comments on commit a575fb5

Please sign in to comment.