Skip to content

Commit

Permalink
remove result log from test case
Browse files Browse the repository at this point in the history
  • Loading branch information
ntqdinh-axonivy committed Dec 27, 2024
1 parent 2f41401 commit ea1a226
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
import ch.ivyteam.ivy.bpm.engine.client.BpmClient;
import ch.ivyteam.ivy.bpm.engine.client.ExecutionResult;
import ch.ivyteam.ivy.bpm.error.BpmError;
import ch.ivyteam.ivy.environment.Ivy;

public class GeocodingLocationProcessTest extends BaseProcessTest {

Expand All @@ -29,7 +28,6 @@ public void testGeocodingByName_ReturnsListOfGeoLocations(BpmClient bpmClient) t
assertThat(object).isInstanceOf(List.class);
var objects = (ArrayList<?>) object;
assertThat(objects).isNotEmpty();
Ivy.log().warn(objects.get(0).toString());
assertThat(objects.get(0)).isInstanceOf(GeoLocation.class);
}

Expand Down

0 comments on commit ea1a226

Please sign in to comment.