Skip to content

Commit

Permalink
Fix print call
Browse files Browse the repository at this point in the history
  • Loading branch information
Teagan42 authored and seldondev committed Apr 2, 2020
1 parent ea62c09 commit aa86222
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ public void testPredict_img_as_binary() throws Exception {
.contentType(MediaType.APPLICATION_OCTET_STREAM))
.andReturn();
byte[] response = res.getResponse().getContentAsByteArray();
System.out.println(String(response);
System.out.println(new String(response));
Assert.assertEquals(200, res.getResponse().getStatus());
SeldonMessage.Builder builder = SeldonMessage.newBuilder();
ProtoBufUtils.updateMessageBuilderFromJson(builder, new String(response));
Expand Down

0 comments on commit aa86222

Please sign in to comment.