Fix context runner assertions not being executed

See gh-39087
This commit is contained in:
Kai Zander 2024-01-10 20:56:39 +01:00 committed by Moritz Halbritter
parent 1000733a4d
commit ed039fcf7d

View File

@ -628,15 +628,13 @@ class WebFluxAutoConfigurationTests {
@Test @Test
void customSessionMaxSessionsConfigurationShouldBeApplied() { void customSessionMaxSessionsConfigurationShouldBeApplied() {
this.contextRunner.withPropertyValues("server.reactive.session.max-sessions:123") this.contextRunner.withPropertyValues("server.reactive.session.max-sessions:123")
.run((context) -> assertMaxSessionsWithWebSession(123)); .run(assertMaxSessionsWithWebSession(123));
} }
@Test @Test
void defaultSessionMaxSessionsConfigurationShouldBeInSync() { void defaultSessionMaxSessionsConfigurationShouldBeInSync() {
this.contextRunner.run((context) -> { int defaultMaxSessions = new InMemoryWebSessionStore().getMaxSessions();
int defaultMaxSessions = new InMemoryWebSessionStore().getMaxSessions(); this.contextRunner.run(assertMaxSessionsWithWebSession(defaultMaxSessions));
assertMaxSessionsWithWebSession(defaultMaxSessions);
});
} }
@Test @Test