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 222702f commit 3c265e1Copy full SHA for 3c265e1
spring-web/src/test/java/org/springframework/web/server/session/InMemoryWebSessionStoreTests.java
@@ -53,7 +53,8 @@ void startsSessionExplicitly() {
53
void startsSessionImplicitly() {
54
WebSession session = this.store.createWebSession().block();
55
assertThat(session).isNotNull();
56
- session.start();
+ // We intentionally do not invoke start().
57
+ // session.start();
58
session.getAttributes().put("foo", "bar");
59
assertThat(session.isStarted()).isTrue();
60
}
0 commit comments