jayblanc commented on code in PR #696:
URL: https://github.com/apache/unomi/pull/696#discussion_r1778195879


##########
itests/src/test/java/org/apache/unomi/itests/BaseIT.java:
##########
@@ -546,7 +547,9 @@ protected CloseableHttpResponse 
executeHttpRequest(HttpUriRequest request) throw
     protected String resourceAsString(final String resource) {
         final java.net.URL url = 
bundleContext.getBundle().getResource(resource);
         try (InputStream stream = url.openStream()) {
-            return 
objectMapper.writeValueAsString(objectMapper.readTree(stream));
+            JsonNode node = objectMapper.readTree(stream);

Review Comment:
   It was for debug purpose and as it is IT class, I left it like this.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to