File tree Expand file tree Collapse file tree
src/test/java/io/getstream/chat/java Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -543,14 +543,16 @@ void whenQueryingFutureChannelBansWithTargetUserId_thenFiltersCorrectly() {
543543 // Query with target_user_id filter - should only return the specific target
544544 var response =
545545 Assertions .assertDoesNotThrow (
546- () -> User .queryFutureChannelBans ().userId (creatorId ).targetUserId (targetId1 ).request ());
546+ () ->
547+ User .queryFutureChannelBans ().userId (creatorId ).targetUserId (targetId1 ).request ());
547548 Assertions .assertEquals (1 , response .getBans ().size ());
548549 Assertions .assertEquals (targetId1 , response .getBans ().get (0 ).getUser ().getId ());
549550
550551 // Query for the other target
551552 response =
552553 Assertions .assertDoesNotThrow (
553- () -> User .queryFutureChannelBans ().userId (creatorId ).targetUserId (targetId2 ).request ());
554+ () ->
555+ User .queryFutureChannelBans ().userId (creatorId ).targetUserId (targetId2 ).request ());
554556 Assertions .assertEquals (1 , response .getBans ().size ());
555557 Assertions .assertEquals (targetId2 , response .getBans ().get (0 ).getUser ().getId ());
556558
You can’t perform that action at this time.
0 commit comments