File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
main/java/io/getstream/chat/java/models
test/java/io/getstream/chat/java Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ public static class ReminderQueryRequestData {
161161
162162 @ Singular
163163 @ Nullable
164- @ JsonProperty ("filter_conditions " )
164+ @ JsonProperty ("filter " )
165165 private Map <String , Object > filterConditions ;
166166
167167 @ Singular
Original file line number Diff line number Diff line change @@ -167,8 +167,8 @@ void whenQueryingRemindersWithFilterConditions_thenNoException() {
167167
168168 // Verify the query returned results
169169 Assertions .assertNotNull (reminders );
170- // Note: The API might not return any reminders if they were deleted or not indexed yet
171- // So we don't assert that the list is not empty
170+ Assertions . assertEquals ( 1 , reminders . size ());
171+ Assertions . assertEquals ( message . getId (), reminders . get ( 0 ). getMessageId ());
172172
173173 // Check for pagination fields
174174 Assertions .assertDoesNotThrow (
You can’t perform that action at this time.
0 commit comments