Skip to content

Commit

Permalink
add println
Browse files Browse the repository at this point in the history
  • Loading branch information
sullis committed Oct 22, 2023
1 parent 129ffcd commit 87b5264
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,7 @@ void httpGetReturnsStatus500DueToConnectionResetByPeer(
.build();
Response response = okHttp.newCall(request).execute();
assertThat(response.code()).isEqualTo(500);
System.out.println("xyz response.body.string: " + response.body().string());
assertThat(response.body().string()).isEqualTo("");
verify(1, getRequestedFor(anyUrl()));
}
Expand Down

0 comments on commit 87b5264

Please sign in to comment.