We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11ec190 commit 4804028Copy full SHA for 4804028
core/src/test/java/com/redis/vl/extensions/messagehistory/SemanticMessageHistoryIntegrationTest.java
@@ -391,8 +391,12 @@ void testGetRaw() throws InterruptedException {
391
// Raw should have entry_id - check any entry has it
392
assertTrue(raw.stream().anyMatch(m -> m.get(ID_FIELD_NAME) != null));
393
// Check user message exists with correct content
394
- assertTrue(raw.stream().anyMatch(m ->
395
- "user".equals(m.get(ROLE_FIELD_NAME)) && "first prompt".equals(m.get(CONTENT_FIELD_NAME))));
+ assertTrue(
+ raw.stream()
396
+ .anyMatch(
397
+ m ->
398
+ "user".equals(m.get(ROLE_FIELD_NAME))
399
+ && "first prompt".equals(m.get(CONTENT_FIELD_NAME))));
400
}
401
402
0 commit comments