This commit is contained in:
Phillip Webb
2024-01-22 11:57:37 -08:00
parent 72f8bb8d13
commit 088b313ae5
2 changed files with 5 additions and 7 deletions

View File

@@ -68,7 +68,6 @@ class ReactiveSessionsEndpointTests {
assertThat(result.get(0).getLastAccessedTime()).isEqualTo(session.getLastAccessedTime());
assertThat(result.get(0).getMaxInactiveInterval()).isEqualTo(session.getMaxInactiveInterval().getSeconds());
assertThat(result.get(0).isExpired()).isEqualTo(session.isExpired());
}).expectComplete().verify(Duration.ofSeconds(1));
then(this.indexedSessionRepository).should().findByPrincipalName("user");
}