We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5316832 commit 8745995Copy full SHA for 8745995
1 file changed
src/test/java/io/getstream/FeedIntegrationTests.java
@@ -569,7 +569,10 @@ void test10_UpdateComment() throws Exception {
569
570
// snippet-start: UpdateComment
571
UpdateCommentRequest updateRequest =
572
- UpdateCommentRequest.builder().comment("Updated comment text from Java SDK").userID(testUserId).build();
+ UpdateCommentRequest.builder()
573
+ .comment("Updated comment text from Java SDK")
574
+ .userID(testUserId)
575
+ .build();
576
577
UpdateCommentResponse response =
578
feeds.updateComment(commentId, updateRequest).execute().getData();
0 commit comments